I want to match between entities by multiple relationship types.
Is it possible to say the following query:
match (Yoav:Person{name:"Yoav"})-[:liked & watched & ... ]->(movie:Movie) return movie
I need "and" between all the relation types; Yova liked and watched and .. a movie.
Yes, you can do something like:
Take a look in the docs: Match on multiple relationship types
EDIT:
From the comments:
In this case, you can do: