v1

latestOpenAPI 3.1.02026-07-26365.9 KB
GraphQL

GraphQL Endpoint

Execute GraphQL queries, mutations, and subscriptions. The complete GraphQL schema with all available types, queries, mutations, and subscriptions is documented in Apollo Studio.

post/graphql

Request body

querystring required

The GraphQL query string

variablesobject

Variables for the query

operationNamestring

Optional name of the operation to execute

Example request

{
  "query": "query { activeUser { id name email } }"
}

Response

GraphQL response containing data and/or errors

dataobject

The response data

All 3 operations