Hello,
I would like to ask why a query result is different when I am using a variable length path.
for example:
MATCH (n0:I {t:'n0'})-[:rel1 *0..1]->(n1)-[:rel2 *0..1]->(n2)<-[:rel3 *0..1]-(n3) RETURN n2;
this query returns n0,n1,n2,n2,n10 nodes
but...