Wrong Query in Exercise 7

Hey,
one of the answers in Exercise 7 is:
MATCH (p:Person)-[:ACTED_IN]->(m:Movie)
WITH p, collect(m) AS movies
WHERE size(movies) > 5
RETURN p.name, movies

The results that should be presented (from the screenshot of the exercise):

The the-facto result:

There are different ways to view query results. In the top image, you're viewing the results in a Table view. In the bottom image, you're viewing the results in a graphical view. You can use the toolbar on the left to choose which results view to use, depending on your needs.

Also, for new queries being executed, it will reuse whatever result view you used last.

1 Like