introspect-schema
Analyze GraphQL schema structure to understand available queries, types, and directives. Filter by specific types to focus on relevant schema components for development and debugging.
Instructions
Introspect the GraphQL schema. Optionally filter to specific types.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
descriptions | No | ||
directives | No | ||
typeNames | No | e.g., ["Query", "User"] |
Input Schema (JSON Schema)
{
"properties": {
"descriptions": {
"default": true,
"type": "boolean"
},
"directives": {
"default": true,
"type": "boolean"
},
"typeNames": {
"description": "e.g., [\"Query\", \"User\"]",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}