cypher-mode icon indicating copy to clipboard operation
cypher-mode copied to clipboard

Emacs major mode for editing cypher scripts (Neo4j)

cypher-mode

Emacs major mode for editing cypher scripts (Neo4j)

Sample cypher statement

START me=node:node_auto_index(name="Me") 
FOREACH (i in range(1,10) : 
CREATE (friend {name: "Friend "+i}), (me)-[:FRIEND]->(friend));