You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expose an API to validate Cypher/GFQL queries without executing them, so clients can run parser+binder+static-schema checks as a preflight step.
Why
Current validation exists in compile/binder lanes (e.g., #1302) but is not surfaced as a first-class user API for "check-only" workflows (IDE/lint/CI/pre-submit).
Scope
In scope:
Add a public validate-only entrypoint (name TBD, e.g. g.validate_cypher(...))
Run parse/lower/bind/schema-validation pipeline without dispatching runtime execution
Summary
Expose an API to validate Cypher/GFQL queries without executing them, so clients can run parser+binder+static-schema checks as a preflight step.
Why
Current validation exists in compile/binder lanes (e.g., #1302) but is not surfaced as a first-class user API for "check-only" workflows (IDE/lint/CI/pre-submit).
Scope
In scope:
g.validate_cypher(...))Out of scope:
Acceptance
Related