DraftOrderInput Input Type
No description
input DraftOrderInput {
billingAddress: AddressInput
saveBillingAddress: Boolean
user: ID
userEmail: String
discount: PositiveDecimal @deprecated
shippingAddress: AddressInput
saveShippingAddress: Boolean
shippingMethod: ID
voucher: ID
voucherCode: String
customerNote: String
channelId: ID
redirectUrl: String
externalReference: String
metadata: [MetadataInput!]
privateMetadata: [MetadataInput!]
languageCode: LanguageCodeEnum
}
Fields
DraftOrderInput.billingAddress ● AddressInput input miscellaneous
Billing address of the customer.
DraftOrderInput.saveBillingAddress ● Boolean scalar miscellaneous
Indicates whether the billing address should be saved to the user’s address book upon draft order completion. Can only be set when a billing address is provided. If not specified along with the address, the default behavior is to not save the address.
Added in Saleor 3.21DraftOrderInput.user ● ID scalar miscellaneous
Customer associated with the draft order.
DraftOrderInput.userEmail ● String scalar miscellaneous
Email address of the customer.
DraftOrderInput.discount ● PositiveDecimal deprecated scalar miscellaneous
Providing a value for the field has no effect. Use orderDiscountAdd mutation instead.
Discount amount for the order.
DraftOrderInput.shippingAddress ● AddressInput input miscellaneous
Shipping address of the customer.
DraftOrderInput.saveShippingAddress ● Boolean scalar miscellaneous
Indicates whether the shipping address should be saved to the user’s address book upon draft order completion.Can only be set when a shipping address is provided. If not specified along with the address, the default behavior is to not save the address.
Added in Saleor 3.21DraftOrderInput.shippingMethod ● ID scalar miscellaneous
ID of a selected shipping method.
DraftOrderInput.voucher ● ID scalar miscellaneous
ID of the voucher associated with the order.
DraftOrderInput.voucherCode ● String scalar miscellaneous
A code of the voucher associated with the order.
Added in Saleor 3.18DraftOrderInput.customerNote ● String scalar miscellaneous
A note from a customer. Visible by customers in the order summary.
DraftOrderInput.channelId ● ID scalar miscellaneous
ID of the channel associated with the order.
DraftOrderInput.redirectUrl ● String scalar miscellaneous
URL of a view where users should be redirected to see the order details. URL in RFC 1808 format.
DraftOrderInput.externalReference ● String scalar miscellaneous
External ID of this order.
DraftOrderInput.metadata ● [MetadataInput!] list input miscellaneous
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.
DraftOrderInput.privateMetadata ● [MetadataInput!] list input miscellaneous
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.
DraftOrderInput.languageCode ● LanguageCodeEnum enum miscellaneous
Order language code.
Added in Saleor 3.21Member Of
draftOrderUpdate mutation