I use the default Movie database movie-graph
and run a simple query like:
MATCH
(:Person{name: 'Tom Hanks'})-[DIRECTED]->(m:Movie)
RETURN m
The result should be all movies which Tom Hanks directed which is one That thing you do
, but it returns 12 movies in which Tom Hanks acted too. why is that?