INPUT_OBJECT
ProductVariantCreateInput
link GraphQL Schema definition
1 input ProductVariantCreateInput { 2 3 : String! 4 5 : Status! 6 7 : String 8 9 : String 10 11 : MonetaryValueInput 12 13 # Exactly one input field should be provided 14 : ProductInput! 15 16 # You can set the size chart only once. 17 # 18 # Exactly one input field should be provided 19 : SizeChartInput 20 21 : [ProductSizeCreateOnProductVariantInput!] 22 23 : ShippingSpecificationSettingsInput 24 25 # Required permission: ProductVariant.attributes:write 26 : [MappedAttributeAssignInput!] 27 28 # Required permission: ProductVariant.attributes:write 29 : [DynamicAttributeAssignInput!] 30 31 # Assign an external ID to reference this object by it later 32 : String 33 }