+1 vote
in NoSQL by
Which statement is preferred Cypher code for Neo4j?

a. MATCH (:Person)-->(:Card)-->(:Company) RETURN count(vehicle)

b. Match (:Person)-->(:Car):(vehicle:Car)-->(:Company) RETURN count(vehicle)

c. MATCH (:Person)-->(vehicle:Car)-->(:Company) RETURN count(vehicle)

d. MATCH (:Person)-->(:Card), (vehicle:Car)-->(:Company) RETURN count(vehicle)

1 Answer

0 votes
by
Which statement is preferred Cypher code for Neo4j?

Answer:-  MATCH (:Person)-->(vehicle:Car)-->(:Company) RETURN count(vehicle)

Related questions

+1 vote
asked Aug 15, 2022 in NoSQL by AdilsonLima
+1 vote
asked Aug 15, 2022 in NoSQL by AdilsonLima
...