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.

orisbaum
Node Link
since ‎03-22-2020
‎06-01-2022

User Statistics

  • 6 Posts
  • 0 Solutions
  • 8 Kudos given
  • 1 Kudos received

User Activity

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 re...
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...
Hey guys, in exercises 4, I get two different results for two queries that looks similar to me. I would love to understand why these two queries gives 2 different results. the queries are running on top the movie db. First one: MATCH (a:Person)-[:PRO...