Neo4J Components
Node
// Create a single Node
create (n)
match(t) return t
create (anything),(seriously_anything)
match(e) return eLabel
// Node with Label
create(n:Student)
match(y) return yProperties
Relationships
Last updated