INPUT_OBJECT

BrandUpdateInput

link GraphQL Schema definition

1input BrandUpdateInput {
2
3name: String
4
5# If empty string is provided, a default URI will be auto-generated based on brand name.
6uri: 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.
10addToStores: [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.
18removeFromStores: [StoreInput!]
19
20# Assign an external ID to reference this object by it later
21externalId: String
22}

link Required by