INPUT_OBJECT

ProductSizeCreateInput

link GraphQL Schema definition

1input ProductSizeCreateInput {
2
3# Exactly one input field should be provided
4productVariant: ProductVariantInput!
5
6# Exactly one input field should be provided
7size: SizeInput!
8
9# Pass empty to unset EAN
10EAN: String
11
12# Pass empty to unset UPC
13UPC: String
14
15# SKU suffix
16sizeNumber: String
17
18comment: String
19
20preorder: Boolean
21
22isActive: Boolean!
23
24shippingSpecifications: ShippingSpecificationsInput
25
26gtin: String
27}

link Required by