Skip to content

Commit 61280a5

Browse files
committed
1 parent a0fd880 commit 61280a5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

doc/modules/ROOT/pages/graph-analytics-serverless.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ gds.run_cypher(
350350
G, result = gds.graph.project(
351351
graph_name="my-graph",
352352
query="""
353-
CALL {
353+
CALL () {
354354
MATCH (u1:User)
355355
OPTIONAL MATCH (u1)-[r:KNOWS]->(u2:User)
356356
RETURN u1 AS source, r AS rel, u2 AS target, {} AS sourceNodeProperties, {} AS targetNodeProperties
@@ -408,7 +408,7 @@ gds.run_cypher(
408408
G, result = gds.graph.project(
409409
graph_name="my-graph",
410410
query="""
411-
CALL {
411+
CALL () {
412412
MATCH (u1:User)
413413
OPTIONAL MATCH (u1)-[r:KNOWS]->(u2:User)
414414
RETURN u1 AS source, r AS rel, u2 AS target, {} AS sourceNodeProperties, {} AS targetNodeProperties

doc/modules/ROOT/pages/tutorials/graph-analytics-serverless-self-managed.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ algorithms, although it is note done in this notebook.
224224
G, result = gds.graph.project(
225225
"people-and-fruits",
226226
"""
227-
CALL {
227+
CALL () {
228228
MATCH (p1:Person)
229229
OPTIONAL MATCH (p1)-[r:KNOWS]->(p2:Person)
230230
RETURN

doc/modules/ROOT/pages/tutorials/graph-analytics-serverless.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ although we do not do that in this notebook.
216216
G, result = gds.graph.project(
217217
"people-and-fruits",
218218
"""
219-
CALL {
219+
CALL () {
220220
MATCH (p1:Person)
221221
OPTIONAL MATCH (p1)-[r:KNOWS]->(p2:Person)
222222
RETURN

examples/graph-analytics-serverless-self-managed.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@
286286
"G, result = gds.graph.project(\n",
287287
" \"people-and-fruits\",\n",
288288
" \"\"\"\n",
289-
" CALL {\n",
289+
" CALL () {\n",
290290
" MATCH (p1:Person)\n",
291291
" OPTIONAL MATCH (p1)-[r:KNOWS]->(p2:Person)\n",
292292
" RETURN\n",

examples/graph-analytics-serverless.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278
"G, result = gds.graph.project(\n",
279279
" \"people-and-fruits\",\n",
280280
" \"\"\"\n",
281-
" CALL {\n",
281+
" CALL () {\n",
282282
" MATCH (p1:Person)\n",
283283
" OPTIONAL MATCH (p1)-[r:KNOWS]->(p2:Person)\n",
284284
" RETURN\n",

0 commit comments

Comments
 (0)