Brand
Brand is an entity that represents a brand or organization in Genera system. It can be a Shopify brand or a standalone brand. All products should be connected to some brand. The brand pays for each successful generation.
type Brand {
id: ID!
name: String!
type: BrandType!
externalId: String
}
Fields
Brand.id ● ID! non-null scalar
Autogenerated unique uuid.
Brand.name ● String! non-null scalar
Name is a string that represents the name of the brand. E.g. 'Zara', 'H&M', 'Nike'.
Brand.type ● BrandType! non-null enum
It defines the type of the brand. E.g. 'SHOPIFY', 'STANDALONE'.
Brand.externalId ● String scalar
Reference to a brand in your system.
Returned By
brand query ● createBrand mutation ● updateBrand mutation