Hi, I have a very simply graph:
UserGroup 2 <-[:IS_MEMBER_OF]- UserGroup 1, User 3 UserGroup 1 <-[:IS_MEMBER_OF]- User 1, User 2 I use the following cypher to find all nodes that are below UserGroup 2 (I start at node User 3 and go one level up in the tree which equals UserGroup 2): START principals=node:nodes(NAME='User 3') MATCH (principals)-[:IS_MEMBER_OF]->()<-[:IS_MEMBER_OF*0..]-(n)" RETURN n The result does not contain User 3 even though it is a child of UserGroup2 and connected to it via IS_MEMBER_OF relationship. Is there any way to also include it in the result? Thanks, - Didi _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

