- MATCH (:Person)–>(:Card)–>(:Company) RETURN count(vehicle)
- Match (:Person)–>(:Car):(vehicle:Car)–>(:Company) RETURN count(vehicle)
- MATCH (:Person)–>(vehicle:Car)–>(:Company) RETURN count(vehicle)
- MATCH (:Person)–>(:Card), (vehicle:Car)–>(:Company) RETURN count(vehicle)
Which statement is prefered Cypher code for Neo4j?
June 25, 2021June 25, 2021
0 Comment