Skip to main content
GraphQL Schema ExplorerEvery response is generated sample data — no tokens will be used, no Mighty Network of your own is required, and mutations change nothing.Headless API overview

Loading the GraphQL schema…

What you can do here

  • Read the schema. Open the Docs panel to walk every type, field, argument, and description, the same way you would against a live endpoint.
  • Write a query with autocomplete. The editor knows the whole schema, so Ctrl + Space suggests valid fields and arguments as you type, and invalid selections are flagged before you run anything.
  • See the shape of a response. Running an operation returns a well-formed result with placeholder values, which is enough to write and type-check the client code that consumes it.
What you cannot do here is get real answers. Values are invented per field, so IDs, counts, and relationships are not consistent with one another and mean nothing outside this page.

About the schema shown

The explorer reads the schema live from https://api.mn.co/graphql/schema, an unauthenticated endpoint that prints it from the code currently running, with every feature flag off. So what you see here is the public shape of the deployed graph, and no flag-gated field can appear in it. If that endpoint cannot be reached, the page quietly falls back to a copy bundled with the documentation, which may lag slightly behind.A specific Mighty Network can expose more than the public schema, depending on the features enabled on it. Fetching the schema is the only request this page makes — no tokens are involved and there is no live Network behind it, so mutations return sample data and change nothing.To fetch the exact schema for your own Network, use the unauthenticated SDL endpoint described in Fetching the schema.

Running real queries

When you are ready to query real data, you have two options:

Hosted GraphiQL

Network hosts get an authenticated explorer inside Network Admin, with no token to paste in.

Authentication

Generate a token and point any GraphQL client at your Network’s endpoint.