CTF Support
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

GraphQL

Introspection

It’s often useful to ask a GraphQL schema for information about what queries it supports. GraphQL allows us to do so using the introspection system!

https://graphql.org/learn/introspection/

Introspection payloads

{"query":"query {__schema{types{name,fields{name}}}}"}