describe_type
Retrieve complete details of any GraphQL type, including fields, arguments, input fields, interfaces, and enum values, to understand its structure before constructing queries.
Instructions
Get full details of a single type: all fields (with their args and return types), input fields, interfaces, enum values, and possible types. Use this to understand a type's shape before constructing a query. Pass the name of any type — including root types like 'Query' or 'Mutation', input types like 'CreateUserInput', or scalar types.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type_name | Yes | Name of the GraphQL type to describe (e.g. 'User', 'CreateUserInput') | |
| include_deprecated | No | Include deprecated fields and enum values. Default: true |