Error
All errors extend this core Error
interface.
interface Error {
code: String!
message: String!
retryable: Boolean!
}
Fields
Error.code
● String!
non-null scalar
An alphanumeric identifier for this error.
Error.message
● String!
non-null scalar
A user-facing error message.
Error.retryable
● Boolean!
non-null scalar
Returns true if the client can safely retry the request, false otherwise.
Implemented By
BadRequestError
object ● InternalServerError
object