CreateBrandInput
This input is used to create a new brand. The brand is an entity that represents a brand or organization in Genera system.
input CreateBrandInput {
name: String!
type: BrandType
externalId: String
}
Fields
CreateBrandInput.name
● String!
non-null scalar
Name is required field. It's a string that represents the name of the brand. E.g. 'Zara', 'H&M', 'Nike'.
CreateBrandInput.type
● BrandType
enum
Type defines the type of the brand. E.g. 'SHOPIFY', 'STANDALONE'.
CreateBrandInput.externalId
● String
scalar
Reference to a brand in your system.
Member Of
createBrand
mutation