Neo4j query for shortest path stuck (Do not work) if I have 2way relationship in graph nodes and nodes are interrelated
问题 I made relation graph two relationship, like if A knows B then B knows A, Every node has unique Id and Name along with other properties.. So my graph looks like if I trigger a simple query MATCH (p1:SearchableNode {name: "Ishaan"}), (p2:SearchableNode {name: "Garima"}),path = (p1)-[:NAVIGATE_TO*]-(p2) RETURN path it did not give any response and consumes 100% CPU and RAM of the machine. UPDATED As I read though posts and from comments on this post I simplified the model and relationship. Now