nexus_graphql_query
Run raw read-only GraphQL queries against the Nexus Mods v2 API to fetch games, mods, files, and other data while avoiding v1 REST rate-limit consumption.
Instructions
Run a raw query against the Nexus v2 GraphQL API (power-user escape hatch).
Backed by the v2 GraphQL API, which does NOT consume the v1 REST rate-limit quota. Introspect types with nexus_graphql_introspect first to build valid queries. Use for read-only queries; most mutations require OAuth scopes this server does not have and will fail cleanly.
Returns: The raw GraphQL 'data' payload as JSON, or 'Error: ...' with the server-side GraphQL error messages.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | GraphQL query document, e.g. 'query { games(count: 5) { nodes { name domainName } } }'. | |
| variables | No | JSON object string with query variables, e.g. '{"term": "sky"}'. | {} |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |