MATCH Clause
MATCH finds patterns in the graph.
Examples
MATCH (n:File) RETURN n
MATCH (a)-[r]->(b) RETURN a, r, b
MATCH (a)-[:DEFINES]->(b:Function) WHERE b.visibility = 'public' RETURN a.path, b.name
See KQL Syntax for full reference.
MATCH finds patterns in the graph.
MATCH (n:File) RETURN n
MATCH (a)-[r]->(b) RETURN a, r, b
MATCH (a)-[:DEFINES]->(b:Function) WHERE b.visibility = 'public' RETURN a.path, b.name
See KQL Syntax for full reference.