INPUT_OBJECT

ProductSizeCreateOnProductVariantInput

link GraphQL Schema definition

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