CreateBrandResult
The result of creating a brand
type CreateBrandResult {
success: Boolean!
brand: Brand
errors: [BrandError!]
}
Fields
CreateBrandResult.success ● Boolean! non-null scalar
If the created Brand was successful
CreateBrandResult.brand ● Brand object
The created Brand
CreateBrandResult.errors ● [BrandError!] list object
Any errors present when creating a Brand will be returned here
Returned By
createBrand mutation