Skip to content
Oeiuwq Faith Blog OpenSource Porfolio

fxbois/cypher-mode

Emacs major mode for editing cypher scripts (Neo4j)

fxbois/cypher-mode.json
{
"createdAt": "2013-09-30T22:10:55Z",
"defaultBranch": "master",
"description": "Emacs major mode for editing cypher scripts (Neo4j)",
"fullName": "fxbois/cypher-mode",
"homepage": "",
"language": "Emacs Lisp",
"name": "cypher-mode",
"pushedAt": "2023-01-17T19:51:18Z",
"stargazersCount": 20,
"topics": [],
"updatedAt": "2022-11-25T06:30:55Z",
"url": "https://github.com/fxbois/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));