Skip to content

Instantly share code, notes, and snippets.

@vladbatushkov
Last active May 2, 2019 16:55
Show Gist options
  • Save vladbatushkov/ce0f8a74e68ccd99e63c56b7df8e9df2 to your computer and use it in GitHub Desktop.
Save vladbatushkov/ce0f8a74e68ccd99e63c56b7df8e9df2 to your computer and use it in GitHub Desktop.
Well known artworks.
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