Neo4jBolt.jl icon indicating copy to clipboard operation
Neo4jBolt.jl copied to clipboard

Neo4j Bolt driver for Julia supports Neo4j 3.0 and above

Results 5 Neo4jBolt.jl issues
Sort by recently updated
recently updated
newest added

I would like to send the database name when running a session or making a driver connection, but I'm not sure how to do that. There is likely a way...

https://github.com/virtualgraham/Neo4jBolt.jl/blob/c55dc83379e97498d615889d2ba6670c222cb29c/src/julia_bolt/JuliaBolt.jl#L257 I am getting the following exception when I connect to my Neo4j Desktop 1.4.7/DBMS 4.3.1 database with Julia 1.6.1. ``` julia> driver = Neo4jBoltDriver("bolt://127.0.0.1:7687", auth=("neo4j", "password")) ERROR: MethodError: Cannot...

Actually I realised why I could not use this package before. I intermittently get segmentation fault: ``` _jl_invoke at /buildworker/worker/package_linux64/build/src/gf.c:2135 [inlined] jl_apply_generic at /buildworker/worker/package_linux64/build/src/gf.c:2305 unknown function (ip: 0x401931) unknown function...

Hi, Debugging a simple example, I noticed some of the values in the metadata were not strings. There was at least one dictionary, which would explain #7 (I was having...

When I run the example for unit of work transactions, I receive the following error: ```julia julia> driver = Neo4jBoltDriver("bolt://127.0.0.1:7687", auth=("neo4j", "password")) Neo4jBoltDriver(address: Address(scheme: bolt, host: 127.0.0.1 port: 7687)) julia>...