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.

SledgeHammer
Node
since ‎12-12-2019
‎06-01-2022

User Statistics

  • 2 Posts
  • 0 Solutions
  • 0 Kudos given
  • 1 Kudos received

User Activity

Given the movies data set as an example: MATCH path=shortestPath((p1:Person)-[*0..15]-(p2:Person)) WHERE toLower(p1.name) = toLower('Tom Hanks') AND toLower(p2.name) = toLower('Halle Berry') return relationships(path) AS relationships, nodes(path) AS...
I'm new to cypher and playing around with the movie data set. I'm trying to return movies, roles and actors all in sorted order. This is what I've got so far: MATCH (movie:Movie)<-[r1:ACTED_IN|DIRECTED|PRODUCED]-(person:Person) unwind r1.roles as rol...
Kudos from