Last active
April 11, 2018 16:56
-
-
Save suellenstringer-hye/ad1319cb6b2510dddd43dcd1ccfdad0f to your computer and use it in GitHub Desktop.
This file contains 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
LOAD CSV WITH HEADERS FROM "https://raw.githubusercontent.com/SuellenStringer-Hye/VUIR-Data-Project/master/Divinity/Ability-rel.csv" | |
AS csvLine | |
MATCH (monster:Monster {id: csvLine.MnstID}),(ability:Ability { id: csvLine.Abid}) | |
CREATE (monster)-[:HAS]->(ability) | |
MATCH (demon:Monster {name: "Demon"})-[:CAN_BE_KILLED_BY]->(weakness) RETURN demon,weakness |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment