INPUT_OBJECT
BrandUpdateInput
link GraphQL Schema definition
1 input BrandUpdateInput { 2 3 String : 4 5 # If empty string is provided, a default URI will be auto-generated based on brand name. 6 String : 7 8 # Specify IDs of the stores this brand should be added to. 9 # It is safe to add to the same store multiple times. 10 StoreInput!] : [ 11 12 # Specify IDs of the stores this brand should be removed from. 13 # It has precedence over addToStores, so if you add and remove the same 14 # store ID in one mutation, brand will be removed from such store. 15 # It is safe to remove from any store, even if brand was not added there. 16 # Brand must be added to at least one store so removing a brand from all 17 # stores will trigger an error. 18 StoreInput!] : [ 19 20 # Assign an external ID to reference this object by it later 21 String : 22 }