Skip to main content

OrderUpdateInput Input Type

No description

input OrderUpdateInput {
billingAddress: AddressInput
userEmail: String
shippingAddress: AddressInput
externalReference: String
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
languageCode: LanguageCodeEnum
}

Fields

billingAddress ● AddressInput

Billing address of the customer.

userEmail ● String

Email address of the customer.

shippingAddress ● AddressInput

Shipping address of the customer.

externalReference ● String

External ID of this order.

metadata ● [MetadataInput!]

Order public metadata.

Added in Saleor 3.21.Can be read by any API client authorized to read the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

privateMetadata ● [MetadataInput!]

Order private metadata.

Added in Saleor 3.21.Requires permissions to modify and to read the metadata of the object it's attached to.

Warning: never store sensitive information, including financial data such as credit card details.

languageCode ● LanguageCodeEnum

Order language code.

Added in Saleor 3.21

Member Of

orderUpdate mutation