Skip to content

Instantly share code, notes, and snippets.

@augustine-tran
Created September 27, 2013 07:48
Show Gist options
  • Select an option

  • Save augustine-tran/6725374 to your computer and use it in GitHub Desktop.

Select an option

Save augustine-tran/6725374 to your computer and use it in GitHub Desktop.
Get all other movies of each actors acted in "The Lord of ring: Two Towers"
start m=node:Movie(id="120")
match m<-[r:ACTS_IN]-(actor)-[role:ACTS_IN]->(movie)
return collect(movie.title + " : " + role.name), actor.name + " : " + r.name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment