Router Errors
Error and status codes returned by GraphOS Router and Apollo Router Core
Learn about error codes and HTTP response status codes returned by GraphOS Router and Apollo Router Core.
HTTP status codes
Code | Description |
---|---|
| Bad request A request failed GraphQL validation or failed to be parsed. |
| Unauthorized Requests may receive this response in two cases:
|
| Method not allowed note Both mutations and subscriptions must use POST. |
| Not acceptable A request's HTTP Accept header didn't contain any of the router's supported mime-types:
|
| Too many requests Request traffic exceeded configured rate limits. See client side traffic shaping. |
| Request canceled by client The request was canceled because the client closed the connection, possibly due to a client side timeout. |
| Internal server error The router encountered an unexpected issue. Report this possible bug to the router team. |
| Request timed out The request was not able to complete within a configured amount of time. See client side traffic shaping timeouts. |
note
You can create Rhai scripts that throw custom status codes. See Terminating client requests to learn more.
GraphQL error codes
GraphQL error codes can appear in client responses under errors[].extensions.code
, which is an established convention found in GraphQL error extensions. Learn how to see these error codes in Studio via extended error metrics.
Code | Description |
---|---|
| The operation was not executed because sending a persisted query ID and a body in the same request is disallowed. |
| There was an error fetching data from a connector service. |
| The estimated cost of the query was greater than the configured maximum cost. |
| The actual cost of the query was greater than the configured maximum cost. |
| The query could not be parsed. |
| The response from a subgraph did not match the GraphQL schema. |
| The request timed out when fetching data from a connector service. |
| The operation failed during GraphQL validation. |
| The operation could not be executed because the operation name was invalid or did not match an operation in the query document. |
| There was an error at the HTTP transport layer when fetching data from a connector service. |
| The operation was not executed due to exceeding the max_aliases limit. |
| The operation was not executed due to exceeding the max_depth limit. |
| The operation was not executed due to exceeding the max_height limit. |
| The operation was not executed due to exceeding the max_root_fields limit. |
| The operation was not executed because it was not found in the persisted query safelist. |
| The operation could not be parsed as GraphQL. |
| The operation was not executed due to a mismatch with the automatic persisted query (APQ) protocol. There was an attempt to store this operation in the APQ cache, but the provided hash did not match the operation. |
| The operation was not executed because it was not found in the automatic persisted query (APQ) cache. This is an expected behavior when using the APQ protocol. |
| An operation attempted to use automatic persisted queries, but the feature was not enabled. |
| The operation was not executed because it was not found in the persisted query safelist. |
| There was an error due to exceeding the max requests configuration for a connector service. |
| The response returned from a subgraph failed validation for the supergraph schema. |
| There was an error at the HTTP transport layer when fetching data from a subgraph service. |
| The operation was not fully executed because it attempted to use a field or type was unauthorized. |