summaryrefslogtreecommitdiff
path: root/node_modules/shiki/samples/cypher.sample
blob: 961c19672b302420e1becdb2ce2be2953e226fc1 (plain)
1
2
3
4
5
6
7
CREATE (matrix:Movie {title: 'The Matrix', released: 1997})
CREATE (keanu:Person {name: 'Keanu Reeves', born: 1964})
CREATE (tom)-[:ACTED_IN {roles: ['Forrest']}]->(forrestGump)
CREATE (tom)-[:ACTED_IN {roles: ['Zachry']}]->(cloudAtlas)
CREATE (robert)-[:DIRECTED]->(forrestGump)

// https://neo4j.com/docs/getting-started/cypher-intro/results/