INPUT_OBJECT

PurchaseOrderLineCreateInput

link GraphQL Schema definition

1input PurchaseOrderLineCreateInput {
2
3# Exactly one input field should be provided
4productVariant: ProductVariantInput!
5
6# Only product size ID is supported here
7#
8# Exactly one input field should be provided
9productSize: ProductSizeInput!
10
11quantity: Int!
12
13unitPrice: MonetaryValueInput
14
15customsType: CustomsType
16
17customsTax: Float
18}