Last active
May 2, 2019 16:54
-
-
Save vladbatushkov/2a2a89dffe900b5f1ccdf5987e4ad9ae to your computer and use it in GitHub Desktop.
Some of famous inventions.
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 (o:Occupation { name: "Inventor" }) | |
WITH ['Parachute', 'Aerial Screw', 'Ornithopter', 'Robots', 'Machine Gun', 'Viola Organista', 'Diving Suit', 'Self-Propelled Cart', 'Armored Vehicle', 'Cannons'] as inventions, o | |
UNWIND inventions as invention | |
MERGE (o)-[:INVENT]->(i:Invention { name: invention }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment