Error
The Error interface is used to represent a problem that occurred during the handling of a request. It follows the RFC9457 standard: https://www.rfc-editor.org/rfc/rfc9457.html
interface Error {
message: String!
extensions: ErrorExtensions!
}
Fields
Error.message ● String! non-null scalar
A message specific to this occurrence of the problem., for example: input: user internal: could not connect with the database
Error.extensions ● ErrorExtensions! non-null object
Extensions to the error message that provide more detailed information about the problem.
Implemented By
AddressNotFoundError object ● UsageOutsideOfThresholdError object