Created
May 2, 2019 16:51
-
-
Save vladbatushkov/3b8aa81fe99dfa5650315fa3f756a519 to your computer and use it in GitHub Desktop.
Create parents.
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:Genius) | |
MERGE (mom:Person { name: "Caterina", occupation: "peasant woman" }) | |
MERGE (dad:Person { name: "Messer Piero", occupation: "notary" }) | |
MERGE (mom)-[:MOTHER_OF]->(g)<-[:FATHER_OF]-(dad) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment