introspect_schema
Retrieves and caches the full GraphQL schema via introspection, required before querying or describing schema elements. Use force=true to refresh the cache.
Instructions
Fetch the full GraphQL schema via introspection and cache it. Required before any list_*, describe_*, or execute_typed_* call. Idempotent: returns the cached schema if available unless force=true. The schema can be large (>1MB for Shopify/GitHub) so consider clearing the cache or using search/describe tools on subsequent calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| force | No | If true, re-fetch the schema even if cached. Default: false (use cache if available). |