Linear GraphQL (escape hatch)
linear_graphqlRun custom GraphQL queries and mutations against Linear's API to retrieve raw data when default fields are insufficient.
Instructions
Run an arbitrary GraphQL query or mutation against Linear's API (https://api.linear.app/graphql) and return the raw result. For the rare need neither the lean default nor full:true covers. Example: linear_graphql({query: "query($id:String!){ issue(id:$id){ identifier subscribers{ nodes{ name } } } }", variables: {id: "ENG-123"}}). Bearer-gated like every tool; errors surface, never swallowed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A GraphQL document (query or mutation) | |
| variables | No | Variables object for the document |