Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
Suppose I want actors who were in "The Matrix" but not "Matrix Revolutions"
I want to do something like:
MATCH(p:Person) -[:ACTED_IN]-> (:Movie {name:"The Matrix"})
DIFFERENCE
MATCH(p) -[:ACTED_IN]-> (:Movie {name:"The Matrix Revolutions"})
RETURN p
[added] This is somewhat of a duplicate of my other post, but I thought it be a good request to ask for a set operator (DIFFERENCE) to be added to the existing UNION operator.