Created
May 7, 2019 16:31
-
-
Save vladbatushkov/a6599d7e50ba4affbb0c92f841979487 to your computer and use it in GitHub Desktop.
Grab perfume brands.
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://www.fragranceoutlet.com/pages/brands" as url | |
CALL apoc.load.html(url, { data: "li.brand a" }) YIELD value | |
UNWIND value.data as brand | |
MERGE (b:Brand { name: brand.text, url: brand.attributes.href }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment