OrderSettings Object
Represents the channel-specific order settings.
type OrderSettings {
automaticallyConfirmAllNewOrders: Boolean!
automaticallyFulfillNonShippableGiftCard: Boolean!
expireOrdersAfter: Minute
markAsPaidStrategy: MarkAsPaidStrategyEnum!
deleteExpiredOrdersAfter: Day!
allowUnpaidOrders: Boolean!
includeDraftOrderInVoucherUsage: Boolean!
}
Fields
OrderSettings.automaticallyConfirmAllNewOrders
● Boolean!
non-null scalar miscellaneous
When disabled, all new orders from checkout will be marked as unconfirmed. When enabled orders from checkout will become unfulfilled immediately.
OrderSettings.automaticallyFulfillNonShippableGiftCard
● Boolean!
non-null scalar miscellaneous
When enabled, all non-shippable gift card orders will be fulfilled automatically.
OrderSettings.expireOrdersAfter
● Minute
scalar miscellaneous
Expiration time in minutes. Default null - means do not expire any orders.
OrderSettings.markAsPaidStrategy
● MarkAsPaidStrategyEnum!
non-null enum channels
Determine what strategy will be used to mark the order as paid. Based on the chosen option, the proper object will be created and attached to the order when it's manually marked as paid.
PAYMENT_FLOW
- [default option] creates the Payment
object.
TRANSACTION_FLOW
- creates the TransactionItem
object.
OrderSettings.deleteExpiredOrdersAfter
● Day!
non-null scalar miscellaneous
The time in days after expired orders will be deleted.
OrderSettings.allowUnpaidOrders
● Boolean!
non-null scalar miscellaneous
Determine if it is possible to place unpaid order by calling checkoutComplete
mutation.
OrderSettings.includeDraftOrderInVoucherUsage
● Boolean!
non-null scalar miscellaneous
Determine if voucher applied on draft order should be count toward voucher usage.
Added in Saleor 3.18Returned By
orderSettings
query
Member Of
Channel
object ● OrderSettingsUpdate
object