Hey,
an inconsistency I've encountered while doing exercise 5 on top of the movies db.
first query:
MATCH (m:Movie)<-[:ACTED_IN]-(a:Person)
WITH count(a) as numMovies, collect(m.title) as movies,a
WHERE numMovies = 5
RETURN a.name, movies
resulting i...