All Downloads are FREE. Search and download functionalities are using the official Maven repository.

browser.content.help.create.html Maven / Gradle / Ivy

The newest version!

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
Create two related people, returning them.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy