Run a raw GraphQL query
hypertune_queryRun an arbitrary GraphQL query (and optional variables) against the Hypertune edge endpoint. Power-user escape hatch for full control — each Hypertune project has its own generated schema, so this handles any flag shape, nested selections, inline enum literals, or variables the convenience tools can't express. The query root field is root(context: ...).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A complete GraphQL query string, e.g. `query { root(context: {environment: "production"}) { myFlag } }`. | |
| variables | No | Optional GraphQL variables object matching the query's declared variables. |