From 916021885be0559c337b21951e052dad7aee1e4f Mon Sep 17 00:00:00 2001 From: Mingxi Wu Date: Sun, 19 Jan 2025 17:22:47 -0800 Subject: [PATCH] Create c17.cypher --- .../docker/tutorial/4.x/cypher/c17.cypher | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 demos/guru_scripts/docker/tutorial/4.x/cypher/c17.cypher diff --git a/demos/guru_scripts/docker/tutorial/4.x/cypher/c17.cypher b/demos/guru_scripts/docker/tutorial/4.x/cypher/c17.cypher new file mode 100644 index 00000000..10b34f9f --- /dev/null +++ b/demos/guru_scripts/docker/tutorial/4.x/cypher/c17.cypher @@ -0,0 +1,13 @@ +USE GRAPH financialGraph +CREATE OR REPLACE OPENCYPHER QUERY c17(){ + MATCH (s:Account {name: "Paul"}) + RETURN s AS srcAccount + UNION + MATCH (s:Account) + WHERE s.isBlocked + RETURN s AS srcAccount +} + +install query c17 + +run query c17()