Last active
May 2, 2019 16:55
-
-
Save vladbatushkov/ce0f8a74e68ccd99e63c56b7df8e9df2 to your computer and use it in GitHub Desktop.
Well known artworks.
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: "Painter" }) | |
WITH ['The Annunciation', 'The Baptism of Christ', 'Madonna of the Carnation', 'Ginevra de\' Benci', 'Benois Madonna', 'The Adoration of the Magi', 'Saint Jerome in the Wilderness', 'Madonna Litta', 'Virgin of the Rocks', 'Portrait of a Musician', 'Lady with an Ermine', 'The Last Supper', 'La belle ferronnière', 'Sala delle Asse', 'The Virgin and Child with St Anne and St John the Baptist', 'Portrait of Isabella d\'Este', 'The Madonna of the Yarnwinder', 'The Madonna of the Yarnwinder', 'The Virgin and Child with St. Anne', 'Mona Lisa', 'Salvator Mundi', 'Head of a Woman', 'St. John the Baptist'] as artworks, o | |
UNWIND artworks as artwork | |
MERGE (o)-[:CREATE]->(a:Artwork { name: artwork }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment