Paul Horn
Paul Horn
Hi, I believe your situation is similar to #123 -- You want to have a certain number of nodes regardless of whether they are connected. You can use the same...
Yes, sounds like a great idea
You're right, we don't support result summary yet. We're going to improve the support for additional Bolt features soon and I'll keep that in mind (since the counters are a...
`Graph` should be you entrypoint and you should keep that one in a singleton-ish place, like the `axum` state as @jifalops mentioned. A static `OnceLock` is also ok, depending on...
@tausifcreates The [definition](https://neo4j.com/docs/java-manual/current/terminology/#term-session:~:text=targets%20a%20server.-,session,A%20causally%20linked%20sequence%20of%20transactions.,-thread%20safety) of a session is "A causally linked sequence of transactions.". What that means is, that you've got an abstraction that allows you to run multiple transactions after...
Thanks for the feedback, that's great to hear :)
Hi, what protocol did you use to connect to the Aura instance? I think the default is `neo4j+s`, which might not quite work correcly. This driver does not yet implement...
Hi @daveman1010221 I agree that Query could expose it's data. I'd prefer `get_*` and `get_mut_*` methods over public fields, as this makes it easier to maintain compatibility in case we...
You're right, getting a BoltMap is not possible right now, and there are other Bolt types that are not publicly accessible. Before we're talking about adding a PR for this,...
We've just release `0.7.0-rc.1`, the following should work (in fact, I'm gonna add this as a test case): ```rust #[derive(Debug, Deserialize, PartialEq)] struct Model { node: Node, d_left: Option, d_right:...