neo4j-clj icon indicating copy to clipboard operation
neo4j-clj copied to clipboard

Clojure bindings for Bolt / the Java Neo4j driver, complete with Joplin support for managing database migrations.

Results 5 neo4j-clj issues
Sort by recently updated
recently updated
newest added

Any reason not to use the latest? This tripped me up (example crashed) when I accidentally found an older version of the MD file through google that said version 3.1....

I get the following error under both Java 11 and java 15: ```shell java.lang.IllegalAccessException: class org.neo4j.driver.internal.shaded.io.netty.util.internal.PlatformDependent0$6 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc...

I have the following function (based on the provided example in `examples` folder) ``` (db/with-transaction local-db tx (create-user tx {:user {:first-name "Luke" :last-name "Skywalker"}}) (create-user tx {:user {:first-name "John" :last-name...

There is a problem accessing Neo4j Aura databases--the connection times out and closes if unused after 60 minutes. It's necessary to trap the `org.neo4j.driver.exceptions.SessionExpiredException` and close and reopen the connection...

This is intended to address issue #26 Removed "auto-success" from `make-success-transaction` (renamed). If an exception is thrown from the body of `with-transaction` the transaction will not be committed. I'm unsure...