nexus_graphql_introspect
Discover GraphQL schema types, fields, filters, and enums before querying Nexus Mods. Introspect any type via v2 API to avoid v1 rate limits.
Instructions
Introspect any type in the Nexus v2 GraphQL schema.
Backed by the v2 GraphQL API, which does NOT consume the v1 REST rate-limit quota. Useful for discovering filters, sorts, and fields before composing a query with nexus_graphql_query.
Returns: JSON {name, kind, description, fields: [{name, type}], inputFields, enumValues} or null if the type does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type_name | Yes | GraphQL type name to introspect, e.g. 'Mod', 'ModsFilter', 'Collection'. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |