INPUT_OBJECT
ProductUpdateInput
link GraphQL Schema definition
1 input ProductUpdateInput { 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 # To remove brand from a product, pass null as id 20 : BrandInput 21 22 # To remove collection from a product, pass null as id 23 : CollectionInput 24 25 # To remove country of origin from a product, pass null as id 26 : NullableCountryInput 27 28 # To remove folder from a product, pass null as id 29 : FolderInput 30 31 # To remove measurement chart from a product, pass null as id 32 : MeasurementTableInput 33 34 # Required permission: Product.attributes:write 35 : [MappedAttributeAssignInput!] 36 37 # Required permission: Product.attributes:write 38 : [MappedAttributeUnassignInput!] 39 40 # Required permission: Product.attributes:write 41 : [DynamicAttributeAssignInput!] 42 43 # Required permission: Product.attributes:write 44 : [DynamicAttributeUnassignInput!] 45 46 # Assign an external ID to reference this object by it later 47 : String 48 }