Created
September 27, 2013 07:48
-
-
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"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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