MdsResponseCode
Enum
API response codes, following standard GraphQL codes. See Common GraphQL error codes.
Values
OK
The operation completed. If the GraphQL response contains an errors array, an error occurred.
UNAUTHENTICATED
The request lacked sufficient authentication credentials for the operation. The operation was not attempted. This error code is the GraphQL equivalent of the HTTP 401 Unauthorized status code.
FORBIDDEN
Valid authentication credentials are present but are insufficient to perform the associated operation. This error code is the GraphQL equivalent of the HTTP 403 Forbidden status code.
BAD_USER_INPUT
An input parameter is invalid. This error code applies to input validation performed beyond the standard GraphQL client and server libraries non-null and type checking.
INTERNAL_SERVER_ERROR
The server encountered an unexpected failure and did not provide a response.
PARTIAL_SUCCESS
The response contains part of a successful response due to one or more failures.
QUERY_TOO_COMPLEX
The query exceeded the allowed complexity for a single request.
Example
"OK"