INPUT_OBJECT

OrderLineCreateInput

link GraphQL Schema definition

1input OrderLineCreateInput {
2
3display: DisplayInput!
4
5productSize: ProductSizeInput!
6
7quantity: Int!
8
9discountValue: DiscountValueInput
10
11comment: String
12
13# If set, it holds the absolute url where this item can be seen
14productExternalUrl: String
15
16# Original price taken from the pricelist, might include or exclude taxes depending on the param
17unitOriginalPrice: MonetaryValueInput
18
19unitPrice: MonetaryValueInput!
20
21taxInPercent: Float
22
23taxOutPercent: Float
24
25category: CategoryInput
26
27taxGroup: TaxGroupInput
28
29# Exactly one input field should be provided
30deliveryWindow: DeliveryWindowInput
31}