Created
May 5, 2019 07:41
-
-
Save vladbatushkov/d9ce2e31de8a5243f97e48e0d3f4429a to your computer and use it in GitHub Desktop.
List all characters involved in Star Wars saga
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
WITH "https://vbatushkov.bitbucket.io/swapi.json" AS url | |
CALL apoc.load.json(url) YIELD value | |
UNWIND value.people AS character | |
RETURN character.name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment