From e819f23cbde50c4b7e8faad9d1cbaab4a41e5caa Mon Sep 17 00:00:00 2001 From: Mingxi Wu Date: Thu, 16 Jan 2025 19:20:27 -0800 Subject: [PATCH] Update Cypher.md --- demos/guru_scripts/docker/tutorial/4.x/Cypher.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/guru_scripts/docker/tutorial/4.x/Cypher.md b/demos/guru_scripts/docker/tutorial/4.x/Cypher.md index 793d1c39..1ed0afd0 100644 --- a/demos/guru_scripts/docker/tutorial/4.x/Cypher.md +++ b/demos/guru_scripts/docker/tutorial/4.x/Cypher.md @@ -199,8 +199,8 @@ CREATE OR REPLACE OPENCYPHER QUERY c3(string acctName) { // In cypher, we use $param to denote the binding literal // {name: $acctName} is a JSON style filter. It's equivalent to "a.name = $acctName". // ":transfer" is the label of the edge type "transfer". "e" is the alias of the matched edge. - MATCH (a:Account {name: $acctName})-[e:transfer]->(b:Account) - RETURN b, sum(e.amount) + MATCH (a:Account {name: $accntName})-[e:transfer]->(b:Account) + RETURN b, sum(e.amount) AS totalTransfer }