CreateOrderStatusInput
No description
input CreateOrderStatusInput {
name: String!
code: String!
type: String!
orderType: String!
description: String
priority: Int
isDefault: Boolean
isPublic: Boolean
isEditable: Boolean
isDeletable: Boolean
isExportable: Boolean
isConfirmable: Boolean
isArchivable: Boolean
nextStatusesIds: [Int!]
addOrderStatusToSet: OrderStatusSetSearchByInput
}
Fields
CreateOrderStatusInput.name
● String!
non-null scalar
The order status name
CreateOrderStatusInput.code
● String!
non-null scalar
The order status code value
CreateOrderStatusInput.type
● String!
non-null scalar
The order status type. SYSTEM types are only created by the system
CreateOrderStatusInput.orderType
● String!
non-null scalar
The order status for order type.
CreateOrderStatusInput.description
● String
scalar
The order status description
CreateOrderStatusInput.priority
● Int
scalar
The order status priority
CreateOrderStatusInput.isDefault
● Boolean
scalar
Marks if the order status is default
CreateOrderStatusInput.isPublic
● Boolean
scalar
Marks if the order is public
CreateOrderStatusInput.isEditable
● Boolean
scalar
Marks if the order is editable
CreateOrderStatusInput.isDeletable
● Boolean
scalar
Marks if the order is deletable
CreateOrderStatusInput.isExportable
● Boolean
scalar
Marks if the order is exportable
CreateOrderStatusInput.isConfirmable
● Boolean
scalar
Marks if the order is confirmable
CreateOrderStatusInput.isArchivable
● Boolean
scalar
Marks if the order status can be archived
CreateOrderStatusInput.nextStatusesIds
● [Int!]
list scalar
The IDs of the next possible order statuses
CreateOrderStatusInput.addOrderStatusToSet
● OrderStatusSetSearchByInput
input
The order status set to add this order status to
Member Of
orderStatusCreate
mutation