Skip to content

Commit

Permalink
Create c11.cypher
Browse files Browse the repository at this point in the history
  • Loading branch information
mingxiw authored Jan 19, 2025
1 parent 4216623 commit b99dc93
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions demos/guru_scripts/docker/tutorial/4.x/cypher/c11.cypher
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
USE GRAPH financialGraph

// create a query
CREATE OR REPLACE OPENCYPHER QUERY c11() {
MATCH (a:Account)
WITH a.name AS name
WHERE name STARTS WITH "J"
RETURN name
}

install query c11

run query c11()


0 comments on commit b99dc93

Please sign in to comment.