From d4947f6a2895b27ae69cab1f45d897af5725310c Mon Sep 17 00:00:00 2001 From: Puneet Goyal Date: Mon, 23 Jan 2023 03:01:32 +0530 Subject: [PATCH] Fix property key in gremlin statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix property key in gremlin statement as per TinkerPop’s "Modern" graph --- .../02-Using-Gremlin-to-Access-the-Graph.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb b/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb index d4c02093..10686ba9 100644 --- a/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb +++ b/src/graph_notebook/notebooks/01-Getting-Started/02-Using-Gremlin-to-Access-the-Graph.ipynb @@ -126,7 +126,7 @@ "g.addV('person').property(id, '2').property('name', 'vadas').property('age', 27).next()\n", "g.addV('software').property(id, '3').property('name', 'lop').property('lang', 'java').next()\n", "g.addV('person').property(id, '4').property('name', 'josh').property('age', 32).next()\n", - "g.addV('software').property(id, '5').property('name', 'ripple').property('ripple', 'java').next()\n", + "g.addV('software').property(id, '5').property('name', 'ripple').property('lang', 'java').next()\n", "g.addV('person').property(id, '6').property('name', 'peter').property('age', 35)" ] },