graphql_introspect
Discover GraphQL API schemas by running introspection queries to enumerate all types, fields, queries, and mutations, including hidden or undocumented elements.
Instructions
Run introspection query to enumerate all types, fields, and mutations. Sends the standard GraphQL introspection query (__schema) to discover the full API schema including hidden/undocumented fields, mutations, and types. Returns: {introspection_enabled, types: [{name, kind, fields: [str]}], mutations: [str], queries: [str]}. Side effects: Single POST request. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | GraphQL endpoint URL, e.g. https://target/graphql or https://target/api | |
| auth_header | No | Authorization header value, e.g. 'Bearer abc123' | |
| auth_cookie | No | Session cookie for authenticated requests |