Hello, I am trying to run a somewhat (not really) complex query to recommend a "playlist" to users. Like youtube. I am using the current query:
MATCH (a:Person { name: $user })-[r:WATCHED]-(b:Video) WITH r, b ORDER BY r.ms LIMIT 50 MATCH (b)-[r2:WAT...