Cypher
A graph query language
Cypher is Neo4j's graph query language. Working with a graph is all about understanding patterns of data, which are central to Cypher queries.
Use MATCH
clauses for reading data, and CREATE
or MERGE
for writing data.
MATCH <pattern> WHERE <conditions> RETURN <expressions>