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