From efc5e9f98dca605750e527a34ce9b3ad0477a45b Mon Sep 17 00:00:00 2001 From: John Yaist Date: Tue, 28 Oct 2025 11:03:56 -0700 Subject: [PATCH] replace erroneous method name --- .../itemgraph_and_remap_data.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,