Paul Horn

Results 41 comments of Paul Horn

I am [currently releasing `0.7.0-rc.3`](https://github.com/neo4j-labs/neo4rs/actions/runs/6988971684) which includes #151 that could fix this issue. Could you verify once the version is available?

Yes, that would be great, thank you!

Hi @ajosecueto as of now, the driver only supports the `bolt` protocol (and you cannot even specify a different scheme), so only direct connections without routing. See #82 for adding...

@DataFrogman what system are you running on? And what are the versions of Neo4j and neo4rs? How are you connecting to Neo4j? Are you running in release mode? So far,...

That behavior is by design, basically. `Bolt` is a stateful protocol and calling `execute` will return a RowStream that is in the [READY state](https://neo4j.com/docs/bolt/current/bolt/server-state/#server-ready). At this point, the server has...

@thelonelyvulpes thanks for the input. The other thing right now we would want to consider is https://github.com/neo4j-labs/neo4rs/issues/52, where we might want to use a `Vec` instead of a map. For...

We've a bunch of other things planned that would be breaking, at the very least an update to support 5.x and drop 4.y where y < 4, so I think...

I'm gonna refer to my comment from the other issue https://github.com/neo4j-labs/neo4rs/issues/108#issuecomment-1741012358 This will be possible with the serde integration, here is a unit test that deserializes a row into custom...

@tausifcreates we've just released `0.7.0-rc.1` with serde support. It's missing proper documentation, but I can see that maybe something like this works for you ```rust #[derive(Debug, serde::Deserialize)] struct Thing {...

Hi @Mintactus, none of our mutate algorithm procedures have an option to overwrite existing properties, which is by design. New property values, even if produced by the same algorithm on...