Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-31-2019 10:52 AM
11-01-2019 02:25 AM
Hi Omer,
If I've understood your question correctly, you want to get all the common user nodes that link between both directories tagged "this one"?
If so, something like this should do the job (based on your model above):
//specify the path pattern between the two nodes:
MATCH (:directory {name:"this one"})<--(:group)<--(u:user)-->(:group)-->(:directory {name:"this one"})
//return the user node names that are across this pattern path
RETURN u.name;
Bear in mind that this is assuming the strict alternation between user--group--directory.
11-01-2019 03:16 AM
Thank you for the reply.
I know the users.
But I don 't know the directory "this one".
Is there a analyses possible to get only:
These users all share these nodes.
Mvrgr Omer
All the sessions of the conference are now available online