Google News
logo
Neo4J - Interview Questions
Mention which query language does Neo4j use and what is consist of?
Neo4j uses Cypher query language, which is unique to Neo4j. Traversing the graph requires to know where you want to begin (Start), the rules that allow traversal (Match) and what data you are expecting back (Return).

The basic query consists of :
 
* START n
* MATCH n-[r]- m
* RETURN r;
Advertisement