How can I filter the result based on relationship properties.?
Use case: Get all the MOVIES and PERSONS acted in them where role was NEO.
I tried the query as below
match (p:Person)-[a:ACTED_IN]->(m:Movie{title:'The Matrix'}) where a.roles = 'Neo' r...