Skip to content

Commit 972e4a9

Browse files
authored
Update 04-Creating-Updating-Delete-Queries.ipynb (#525)
Example is trying to show how you can remove a property by setting it to null, but the example is currently setting the entire node to null, which errors out.
1 parent e4524a7 commit 972e4a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/graph_notebook/notebooks/06-Language-Tutorials/02-openCypher/04-Creating-Updating-Delete-Queries.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
"source": [
361361
"%%oc -d $node_labels\n",
362362
"MATCH (joe:person {first_name: 'Joseph', last_name: 'Doe'}) \n",
363-
"SET joe = null\n",
363+
"SET joe.age = null\n",
364364
"RETURN joe"
365365
]
366366
},

0 commit comments

Comments
 (0)