Hi there !
the following query:
match (n)-[:friend*0..3]->(b) where n.salary >= 19999 and n.address="Paris" and b.salary >= 19999 and b.address="Paris" return distinct n.name order by n.name
doesn't give me what I want:
I'm trying to display all th...