AddressNotFoundError
Type representing an error where the provided address was not found.
type AddressNotFoundError implements Error {
postalCode: String!
houseNumber: Int!
houseNumberAddition: String!
message: String!
extensions: ErrorExtensions!
}
Fields
AddressNotFoundError.postalCode ● String! non-null scalar
The postal code of the address.
AddressNotFoundError.houseNumber ● Int! non-null scalar
The house number of the address.
AddressNotFoundError.houseNumberAddition ● String! non-null scalar
The house number addition of the address.
AddressNotFoundError.message ● String! non-null scalar
A message specific to this occurrence of the problem.
AddressNotFoundError.extensions ● ErrorExtensions! non-null object
Extensions to the error message that provide more detailed information about the problem.
Interfaces
Error interface
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