I`m doing the following cypher query in Neo4j:
START a = node(4107)
MATCH a-[:AttractionFor]->b-[r:Brother]-c-[:AttractionFor]->d
WHERE (r.distance? <= 25)
RETURN distinct d
This return the value of a also, which i dont need. I tried a<>d and a.name <> b.name but i get the same result. Also in webadmin it returns nothing ( i`m using Everyman's php library for neo4j ).