HTTP Query API Support - #1319
Open
robsdedude wants to merge 98 commits into
Open
robsdedude wants to merge 98 commits into
robsdedude wants to merge 98 commits into
Conversation
The HTTP Query API will send `null` for notifications without a position. To make the experience the same between using bolt and HTTP, the driver drops `null` positions via HTTP to make them absent, just like they are via bolt.
StephenCathcart
approved these changes
Aug 6, 2026
StephenCathcart
left a comment
Contributor
There was a problem hiding this comment.
Other than open questions looks good to me 👍
Signed-off-by: Rouven Bauer <rouven.bauer@neo4j.com>
Signed-off-by: Rouven Bauer <rouven.bauer@neo4j.com>
Signed-off-by: Rouven Bauer <rouven.bauer@neo4j.com>
Signed-off-by: Rouven Bauer <rouven.bauer@neo4j.com>
Signed-off-by: Rouven Bauer <rouven.bauer@neo4j.com>
Fix doc string copy pasta Signed-off-by: Rouven Bauer <rouven.bauer@neo4j.com>
Signed-off-by: Rouven Bauer <rouven.bauer@neo4j.com>
robsdedude
marked this pull request as ready for review
September 25, 2026 14:20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Neo4j servers recently introduced a new HTTP API for querying the database (called Query API): https://neo4j.com/docs/query-api/current/
This PR add support for configuring the driver with a HTTP URL (e.g.
https://neo4j.example.com:7474/), which will make the driver run queries and transactions via the HTTP Query API instead of Bolt.Notes
Please note that:
urllib3for sync andaiohttpfor async) are required. Installpip install neo4j[http]instead ofpip install neo4j.basicneo4j.ResultSummary.server.protocol_info) might be missing or inaccurate.UnsupportedTypetype, andUUIDs cannot be exchanged with the DBMS.fetch_sizehas not effect, there is no backpressure mechanism.notifications_min_severity,notifications_disabled_categories,notifications_disabled_classifications) have no effect.Preview
This feature is in preview. This means that it does not follow semver. It might be changed (or in rare cases be removed) at any time without following the normal deprecation cycle.
Depends on:
Closes: DRIVERS-118