describe_field
Retrieve complete details of any GraphQL field, including description, return type, arguments with defaults, and deprecation status.
Instructions
Get full details of a single field on any type: description, return type, arguments (each with name, type, description, default value), and deprecation info. Pass type_name='Query' or 'Mutation' to look up root operations, or pass any object type name to look up one of its fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type_name | Yes | Name of the parent type (e.g. 'Query', 'Mutation', 'User') | |
| field_name | Yes | Name of the field to describe |