InterviewSolution
Saved Bookmarks
| 1. |
Which Query Language Does Neo4j Use And What It Contains? |
|
Answer» Neo4j uses Cypher query language, which is unique to Neo4j. If you want to traverse a graph, you have to KNOW where you want to begin (START), the rules that allow traversal (Match) and what data you are expecting back (RETURN). START n MATCH n-[r]- m RETURN r; Neo4j uses Cypher query language, which is unique to Neo4j. If you want to traverse a graph, you have 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 contains: START n MATCH n-[r]- m RETURN r; |
|