A generic error result.
- type ErrorResult {
- # Unique code for the error.
- : String!
- # Extra information about the error. Actual content depends on the error.
- : [ErrorResultExtra!]
- # An associated HTTP code, if any. For example, the error `code` `"not.found"`
- # will
- # have `httpCode` 404.
- : Int
- # Human-readable message.
- : String!
- # Boolean flag indicating whether the client should retry.
- : Boolean
- }