diff --git a/guide/13-managing-arcgis-applications/itemgraph_and_remap_data.ipynb b/guide/13-managing-arcgis-applications/itemgraph_and_remap_data.ipynb index 32dfbd04bf..62c1ada3c8 100644 --- a/guide/13-managing-arcgis-applications/itemgraph_and_remap_data.ipynb +++ b/guide/13-managing-arcgis-applications/itemgraph_and_remap_data.ipynb @@ -314,7 +314,7 @@ ], "source": [ "# conversely, we can grab a dependent item and see what items immediately contain it and need it to exist\n", - "result_flayer = graph.get_item(\"41dd3cca32914cc7ae8fd3a727f44e17\")\n", + "result_flayer = graph.get_node(\"41dd3cca32914cc7ae8fd3a727f44e17\")\n", "result_flayer.item" ] }, @@ -887,7 +887,7 @@ "source": [ "# so we can see that one of them is from our root item, and one is from a dependent item\n", "# let's see what that sub item is\n", - "sub_node = graph2.get_item(\"7099b3c2e979415e975d00e58afed77e\")\n", + "sub_node = graph2.get_node(\"7099b3c2e979415e975d00e58afed77e\")\n", "webmap = sub_node.item\n", "webmap" ] @@ -991,7 +991,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.11" + "version": "3.13.2" } }, "nbformat": 4,