Exploring our API
We have an API explorer and playground.
API Explorer
We have an API explorer (GraphiQL) where you can start to explore our queries and mutations.
Our API explorer: https://api.mytoggle.io/graphiql
Queries
You can show all available queries (follow the link and click the ▶ button).
Schema
You can also list all types defined in our schema.
Types
To drill down to details about any type, pass in the name of the type, for example:
query {
__type(name: "Card") {
name
kind
description
fields {
name
}
}
}
The explorer is useful while you are discovering our public queries without any authentication.
Last updated