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)[...]