Stigg · Schema

GraphQLRequest

FinOpsPricingBillingEntitlementsUsage-Based BillingFeature FlagsProduct-Led GrowthSubscriptionsSaaSGraphQLREST

Properties

Name Type Description
query string GraphQL query or mutation string.
variables object Variables for the GraphQL operation.
operationName string Named operation to execute when the document contains multiple.
View JSON Schema on GitHub

JSON Schema

stigg-graphqlrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GraphQLRequest",
  "title": "GraphQLRequest",
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "GraphQL query or mutation string."
    },
    "variables": {
      "type": "object",
      "description": "Variables for the GraphQL operation.",
      "additionalProperties": true
    },
    "operationName": {
      "type": "string",
      "description": "Named operation to execute when the document contains multiple."
    }
  }
}