cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Wrong Query in Exercise 7

orisbaum
Node Link

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:

1 ACCEPTED SOLUTION

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.

View solution in original post

1 REPLY 1

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.