Neo4clj is a idomatic clojure client, exclusivly using Bolt for performance.
Add the following dependency to project.clj
:
[fullspectrum/neo4clj "1.0.0-SNAPSHOT"]
(require '[neo4clj.client :as client])
;; Create a connection to the Neo4j server
(def connection
(client/connect "bolt://localhost:7687" "neo4j" "password"))
;; Create a new node on the connected server and return it
(client/create-node
connection
{:ref-id "N"
:labels [:person]
:props {:first-name "Thomas"
:last-name "Anderson"}})
;; Close the connection to the Neo4J server
(client/disconnect connection)
Neo4clj uses Clojure maps to represent Nodes and Relationships. To learn more please see Clojure Representations
To learn more about how to use Neo4clj please take a look at our examples
Neo4clj supports the following features via the Bolt Protocol:
Neo4clj also supports the following operations through idomatic functions:
Create, read, update and delete nodes Create, read, update and delete relationships Create and read a complete graph Create and delete indexes
Neo4clj | Clojure | neo-java-driver | Neo4j Server |
---|---|---|---|
1.0.0 | 1.10.0 | 1.7.2 | 3.5.x |
This project has been inspired by the work of two other projects listed below.
Neocons by Michael Klishin (https://github.com/michaelklishin/neocons) neo4j-clj by Christian Betz (https://github.com/gorillalabs/neo4j-clj)
Copyright (C) 2019 Claus Engel-Christensen, Jacob Emcken, and the Full Spectrum team.
Licensed under the Eclipse Public License
Can you improve this documentation? These fine people already did:
Claus Engel-Christensen & Jacob EmckenEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close