Hi all,
why these two Cypher statements returns different results?
MATCH ()-[r:REL]->() RETURN r.property, count(*)
MATCH ()-[r:REL]-() RETURN r.property, count(*)
The first cypher statement use a directed relationship, this is the only difference.
n...