Skip to content

Commit

Permalink
Create c17.cypher
Browse files Browse the repository at this point in the history
  • Loading branch information
mingxiw authored Jan 20, 2025
1 parent 4f2d32e commit 9160218
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions demos/guru_scripts/docker/tutorial/4.x/cypher/c17.cypher
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit 9160218

Please sign in to comment.