Hi,
I am going though cypher learning exercises.
I ran a below query and was expecting a single return row.
MATCH (p:Person)-[ACTED_IN]->(m:Movie)
WHERE p.name = 'Tom Hanks' and m.title = 'That Thing You Do'
RETURN m.title
RESULT
╒══════════════════...