I got this Cypher Query:
match (c:Person)
match (c)-[:eml]->(emls:Email)
match (c)-[:phn]->(phns:Phone)
return phns.Number, emls.Value
Number of Email
nodes is 13, Phone
nodes is 10.
When I return the nodes the result is: 13 Email
nodes and 10 Phone
nodes
But when I return a property, let's say: phones.Number
, I get 130 duplicated results (the number came from 13 * 10).