INPUT_OBJECT

BrandCreateInput

link GraphQL Schema definition

1input BrandCreateInput {
2
3name: String!
4
5# If not provided, it will be auto-generated based on name.
6uri: String
7
8# Specify IDs of the stores this brand should be available in. At least one store is required.
9addToStores: [StoreInput!]
10
11# Assign an external ID to reference this object by it later
12externalId: String
13}

link Required by