Skip to content

Instantly share code, notes, and snippets.

View ElieTaillard's full-sized avatar

Elie TAILLARD ElieTaillard

View GitHub Profile
@wmfairuz
wmfairuz / neo4j-cypher-node-crud
Created May 5, 2014 06:34
neo4j-cypher-node-crud
** CREATE **
// empty node
CREATE (n) RETURN n
// node with properties
CREATE (n {name : 'Fairuz'}) RETURN n
// add relationship
START a=node(1), b=node(2)
CREATE a-[r:FRIEND_OF]->b