Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
07-10-2020 01:45 AM
Hi all,
I seek to have all the entities with their associated arcs which have a link with a specific entity.
For example, all the warehouses that deliver a particular store.
I tried but I can't get what I want.
"MATCH p = () -> (Store {store:" EXAMPLE "}) -> () RETURN p
Thank you in advance for your answers.
Solved! Go to Solution.
07-10-2020 02:05 AM
Hello @sander.gamboa
Can you share the model and put the PNG file here?
CALL db.schema.visualization
But you can try
MATCH (a)-[r1]->(Store {store:"EXAMPLE"})-[r2]->(b) RETURN *
MATCH p=(a)-[r1]->(Store {store:"EXAMPLE"})-[r2]->(b) RETURN p
Regards,
Cobra
07-10-2020 02:05 AM
Hello @sander.gamboa
Can you share the model and put the PNG file here?
CALL db.schema.visualization
But you can try
MATCH (a)-[r1]->(Store {store:"EXAMPLE"})-[r2]->(b) RETURN *
MATCH p=(a)-[r1]->(Store {store:"EXAMPLE"})-[r2]->(b) RETURN p
Regards,
Cobra
07-10-2020 05:11 AM
Thanks for your answer ! It works !
All the sessions of the conference are now available online