CREATE
Insert graph data
The CREATE
clause is used to create data by specifying named
nodes and relationships with inline properties.
Reference: | CREATE manual page |
---|---|
Related: | :help SET :help CREATE UNIQUE :help MERGE :help Cypher |
CREATE (le:Person {name:"Euler"}),(db:Person {name:"Bernoulli"}), (le)-[:KNOWS {since:1768}]->(db) RETURN le, db