hasbolt icon indicating copy to clipboard operation
hasbolt copied to clipboard

Haskell driver for Neo4j 3+ (BOLT protocol)

Results 9 hasbolt issues
Sort by recently updated
recently updated
newest added

Hi! So, since the version `0.1.5.0` (see #28), we have initial support of Bolt Protocol v.3. It contains: - New initial message during the client-server handshake. - New format of...

Hi! I want to use Hasbolt, and I'm trying to run the simple example shown on [the post in the Neo4J blog](https://neo4j.com/blog/hasbolt-haskell-neo4j-bolt-driver/). ```{ haskell } main :: IO () main...

I'm wondering if it would be a good idea to expose the `ResponseError` constructors to allow users to make smarter decisions about errors. For example the error type "Neo.ClientError.Schema.ConstraintValidationFailed" can...

consider a query of form ``` MERGE (x:SomeTag{a:"val1",b:"val"2,c:"val3"}) ON MATCH SET x.d = "val7", x.e = "val8", ... , x.z = "val9" ON CREATE SET x.d = "val4", x.e =...

it's a bit difficult to detach my Haskell code from my cypher queries, so it's not easy for me to use cypher-shell for realistic profiling; so I wonder: what's the...

instructions on how to get neo4j

replaced abandoned dependency

Query gives the following error: Neo.ClientError.Request.InvalidFormat: Illegal struct size: Expected struct to be 1 fields but got 0 This happens because the specification has been changed, the spec now expects...