Liking cljdoc? Tell your friends :D

Neo4J Clojure client

Neo4clj is a idomatic clojure client, exclusivly using Bolt for performance.

Installation

Add the following dependency to project.clj:

[fullspectrum/neo4clj "1.0.0-ALPHA7"]

Clojars Project

Getting started

(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)

Clojure representations

Neo4clj uses Clojure maps to represent Nodes and Relationships. To learn more please see Clojure Representations

Examples

To learn more about how to use Neo4clj please take a look at our examples

Supported Features

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

Version matrix

Neo4cljClojureneo-java-driverNeo4j Server
1.0.0-SNAPSHOT1.10.01.7.23.5.x
1.0.0-ALPHA11.10.04.2.04.2.x
1.0.0-ALPHA21.10.04.2.04.2.x
1.0.0-ALPHA31.10.04.2.04.2.x
1.0.0-ALPHA41.10.04.2.04.2.x
1.0.0-ALPHA51.10.04.2.04.2.x
1.0.0-ALPHA61.10.34.2.54.2.x
1.0.0-ALPHA71.10.34.4.34.4.x
1.0.01.11.14.4.94.4.x

Acknowledgements

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)

License

Copyright (C) 2021 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 Emcken
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close