OrderError
No description
type OrderError {
  field: String
  message: String
  code: OrderErrorCode!
  warehouse: ID
  orderLines: [ID!]
  variants: [ID!]
  addressType: AddressTypeEnum
}
Fields
OrderError.field ● String scalar
Name of a field that caused the error. A value of
nullindicates that the error isn't associated with a particular field.
OrderError.message ● String scalar
The error message.
OrderError.code ● OrderErrorCode! non-null enum
The error code.
OrderError.warehouse ● ID scalar
Warehouse ID which causes the error.
OrderError.orderLines ● [ID!] list scalar
List of order line IDs that cause the error.
OrderError.variants ● [ID!] list scalar
List of product variants that are associated with the error
OrderError.addressType ● AddressTypeEnum enum
A type of address that causes the error.
Member of
Order object
Was this page helpful?