INPUT_OBJECT

PurchaseOrderLineCreateInput

link GraphQL Schema definition

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