GraphGists

The schema

This import is done according to The sql2graph muzicbrainz example taking the This Musicbrainz database schema and transforming it into something like the schema below.

CREATE
  (usa:Country{name:'USA'}),
  (uk:Country{name:'UK'}),
  //madonna
  (madonna:Artist{name:'Madonna',mbid:'79239441-bfd5-4981-a70c-55c3f15c1287'}),
  (evita:Recording{name:"Eva and Magaldi / Eva Beware of the City"}),
  (e_and_m:Work{name:"Evita: Eva and Magaldi",mbid:"d7190526-69b9-4d9d-a786-983833c18c1a"}),
  (ac_mad:ArtistCreadit{name:'Madonna'}),
  (madonna)-[:CREDITED_AS]->(ac_mad),
  (ac_mad)-[:CREDITED_ON]->(evita)-[:PERFORMANCE]->(e_and_m)