Something something, graph gist
Click the + to see the full set-up Cypher script.
// friends data
MERGE (mark:Person {name: "Mark"})
MERGE (michael:Person {name: "Michael"})
MERGE (mark)-[:FRIENDS_WITH]->(michael)
Click the green play button on query one to set up the database for the console, and have a go with your own queries. Back to top