Created
May 11, 2019 16:55
-
-
Save vladbatushkov/4b70acb8d67f90e8b57853153b9beb27 to your computer and use it in GitHub Desktop.
Parse bands.
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
MATCH (g:Genre) | |
CALL apoc.load.html("https://last.fm" + g.url + "/artists", { data: "h3.big-artist-list-title a" }) YIELD value | |
UNWIND value.data as n | |
MERGE (b:Band { name: n.text }) | |
MERGE (b)-[:OF]->(g) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment