CREATE
CREATE (n {name: $value})
Create a node with the given properties.
CREATE (n $map)
Create a node with the given properties.
UNWIND $listOfMaps AS properties
CREATE (n) SET n = properties
Create nodes with the given properties.
CREATE (n)-[r:KNOWS]->(m)
Create a relationship with the given type and direction; bind a variable to it.
CREATE (n)-[:LOVES {since: $value}]->(m)
Create a relationship with the given type, direction, and properties.
Comments