Hi, i wonder how to solve the following using cypher 1) using a match i find all paths for a certain relstype (REL1) between all nodes of certain labeltypes (LABEL1 and LABEL2).. for example
match rel1paths=(n:LABEL1)-[:REL1*]->(m:LABEL2) lets assume this gives me in total 4 paths 2) now i want to perform a secondary match for these 4 paths found in the previous match between the same begin/end nodes but on an other relstype (REL2) .. lets assume that this gives me a result of 3 paths actually this means that for 3 of the 4 paths based on REL1 there is also a REL2 path between the same begin/end nodes NOW ... i want to know for what path from my 1st match there is no secondary path found based on REL2 so actually what im looking for is the difference between the 1st collection of paths and the 2nd collection of paths .. any ideas ? thx koen -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
