Skip to content

Instantly share code, notes, and snippets.

@suellenstringer-hye
Last active June 27, 2016 18:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save suellenstringer-hye/7789010f923e0eaa78b5 to your computer and use it in GitHub Desktop.
Save suellenstringer-hye/7789010f923e0eaa78b5 to your computer and use it in GitHub Desktop.
The Vane Sisters
= The Vane Sisters
//hide
//setup
[source, cypher]
----
CREATE
//People
(cynthia:Person{name:'Cynthia Vane', role:'ghost', plane:'story', plane2:'thisworld', plane3:'otherworld' }),
//Works
(grey:Works{name:'Pictures of Dorian_Grey'}),
(tatar:Works{name:'The Tatar Termagant'}),
(psychicwilde:Works{name:'Psychic Messages from Oscar Wilde'}),
(phenomena:Works{name:'Researches in the Phenomena'}),
(personality:Works{name:'Human Personality and its Survival of Human Bodily Death'}),
(footfalls:Works{name:'Footfalls on the Boundary of Another World'}),
(debatable:Works{name:'The Debatable Land Between this World and the Next'}),
(yoga:Works{name:'A System of Caucasian Yoga'}),
(arcana:Works{name:'Arcana of Spiritualism'}),
(mesmer:Works{name:'Mesmerism, Spiritualism'}),
(khan:Works{name:'Kubla Khan or a Vision in a Dream'}),
(wake:Works{name:'Finnegans Wake'}),
//Planes
(world:Plane{name:'This World'}),
(story:Plane{name:'Story'}),
(otherworld:Plane{name:'Other World'}),
//Relationships
(cynthia)-[:IN]->(world),
(cynthia)-[:IN]->(story),
(cynthia)-[:IN]->(otherworld)
----
//table
//graph
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment