Skip to content

Commit 697d936

Browse files
Fix unzip path issue for custom identity graph seed data (#507)
* Resolved openCypher query issue Resolved "Variable `n` already declared (line 3, column 9 (offset: 46))" issue. * Update 01-Building-an-Identity-Graph-Application.ipynb Updated the install folder path for the seed data to include the gremlin folder
1 parent 1461ff1 commit 697d936

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/graph_notebook/notebooks/03-Sample-Applications/03-Identity-Graphs/01-Building-an-Identity-Graph-Application.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
"%%bash\n",
6060
"\n",
6161
"GRAPH_NOTEBOOK_INSTALL_PATH=`pip show graph-notebook | grep \"Location\" | cut -d ' ' -f2`\n",
62-
"mkdir $GRAPH_NOTEBOOK_INSTALL_PATH/graph_notebook/seed/queries/propertygraph/identity\n",
63-
"cd $GRAPH_NOTEBOOK_INSTALL_PATH/graph_notebook/seed/queries/propertygraph/identity\n",
62+
"mkdir $GRAPH_NOTEBOOK_INSTALL_PATH/graph_notebook/seed/queries/propertygraph/gremlin/identity\n",
63+
"cd $GRAPH_NOTEBOOK_INSTALL_PATH/graph_notebook/seed/queries/propertygraph/gremlin/identity\n",
6464
"curl -s \"https://aws-admartech-samples.s3.amazonaws.com/identity-graph-notebook-data/idgraph.zip\" > \\\n",
6565
" ./idgraph.zip\n",
6666
"unzip ./idgraph.zip\n",

0 commit comments

Comments
 (0)