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()