INPUT_OBJECT
OrderLineCreateInput
link GraphQL Schema definition
1 input OrderLineCreateInput { 2 3 : DisplayInput! 4 5 #   Exactly one input field should be provided 6 : ProductSizeInput! 7 8 : Int! 9 10 #   When `discountValue` is provided, `unitOriginalPrice` will be set as "unitPrice + discount amount". 11 #   Thus it cannot be provided with `unitOriginalPrice`. 12 #  13 #   Exactly one input field should be provided 14 : DiscountValueInput 15 16 : String 17 18 #   If set, it holds the absolute url where this item can be seen 19 : String 20 21 #   Original price taken from the pricelist, might include or exclude taxes depending on the param 22 : MonetaryValueInput 23 24 : MonetaryValueInput! 25 26 : Float 27 28 : Float 29 30 : CategoryInput 31 32 : TaxGroupInput 33 34 #   Exactly one input field should be provided 35 : DeliveryWindowInput 36 }