get_cached_schema
Retrieve the full cached GraphQL schema introspection result as JSON. Use it for offline schema analysis or building queries without repeated network calls.
Instructions
Return the cached introspection result for the current endpoint as JSON. Use this when you need the full schema in one shot (e.g. to build a query offline). For large schemas this can be 1MB+ — use describe_type / list_queries / search_schema for targeted access. The max_depth parameter caps type traversal to keep output size bounded.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_system_types | No | Include __Schema, __Type, etc. Default: false. | |
| max_depth | No | Max depth of type traversal in the response (default: 3). Higher values produce very large output. |