Release v0.9.0 - #10
Merged
Merged
Conversation
## What's New - Add GQL Beta read-only query strings across Rust, Node.js, and Python. - Route GQL through the shared graph-row executor for optional matches, bounded paths, cursors, and explain output. - Add graph-row public API parity, connector tests, examples, and docs. ## Improvements - Unify GQL public naming around execute/explain APIs. - Harden graph-row planning, projection, ordering, caps, and cursor behavior. - Update benchmark harness scenarios for graph-row and GQL parity. ## Documentation - Refresh README and package README positioning around GQL Beta. - Add the compact GQL Beta subset guide and API reference coverage. - Finalize CHANGELOG.md for v0.9.0.
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.
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
[0.9.0] - 2026-05-26
Added
GQL Beta
execute_gqlandexplain_gqlin Rust,executeGql/executeGqlAsyncandexplainGql/explainGqlAsyncin Node.js, andexecute_gql/explain_gqlon both Python sync and async APIs.OPTIONAL MATCH, bounded variable-length paths, path values, row operations, cursors, caps, explain output, and connector result shapes share one implementation.MATCH,OPTIONAL MATCH, node and edge labels, relationship directions, finite bounded path quantifiers,WHERE,RETURN, aliases, scalar expressions, path functions,ORDER BY,SKIP/OFFSET,LIMIT, parameters, and explicit full-scan opt-in.length,start_node,end_node,nodes,relationships,node_ids, andedge_idsvalues across Rust, Node.js, and Python.Changed
Query Execution
execute_gql/executeGqlandexplain_gql/explainGql, matching the read execution model and leaving mutation-capable naming room for a later beta.docs/gql-subset.mdnow document when to use native function APIs versus GQL Beta query strings, the supported subset, and intentionally unsupported beta features.Fixed