Run a Workday GraphQL query
workday_graphqlRun read-only GraphQL queries to access Workday's Inbox and global search data, supplying your own query document for surfaces without standard endpoints.
Instructions
Run a read-only GraphQL query against Workday's PEX surface (/wday/pex/graphql). This is the only route to surfaces that have no GET-able .htmld endpoint — notably the Inbox / "My Tasks" and global search. Workday does not publish these operations, so you supply the document; expect to iterate. mutation and subscription documents are REFUSED — this server is read-only — as are type-system (SDL) documents, whose definition boundaries cannot be tracked reliably.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A GraphQL `query` document. Mutations are rejected. | |
| maxBytes | No | Payload cap before truncation (default 60000). | |
| variables | No | Variables for the query. | |
| operationName | No | Operation name; also sent as the `?operation=` query parameter. |