INPUT_OBJECT
ProductCreateInput
link GraphQL Schema definition
1 input ProductCreateInput { 2 3 : String! 4 5 : ProductStatus! 6 7 : String! 8 9 : String 10 11 : String 12 13 : String 14 15 : Boolean 16 17 : WeightInput 18 19 : BrandInput 20 21 : CollectionInput 22 23 : NullableCountryInput 24 25 : FolderInput 26 27 : MeasurementTableInput 28 29 #   Required permission: Product.attributes:write 30 : [MappedAttributeAssignInput!] 31 32 #   Required permission: Product.attributes:write 33 : [DynamicAttributeAssignInput!] 34 35 #   Required permission: ProductVariant:write 36 : [ProductVariantOnProductCreateInput!] 37 38 #   Assign an external ID to reference this object by it later 39 : String 40 }