OBJECT

Brand

Product brand

link GraphQL Schema definition

  • type Brand implements Node {
  • # Whether the given brand is the default for adverts.
  • default: Boolean!
  • # Whether buying the associated item via the website is forbidden.
  • denyBuyOnlineFor: Boolean!
  • # If the associated item has this taxon, then buying the item
  • #
  • # via the website is forbidden.
  • denyBuyOnlineForTaxon: Taxon
  • # Whether buying the associated item for in-store pickup is forbidden.
  • denyClickAndCollectFor: Boolean!
  • # If the associated item has this taxon, then buying the item
  • #
  • # for in-store pickup is forbidden.
  • denyClickAndCollectForTaxonId: ID
  • externalIds: [ExternalID!]!
  • id: ID!
  • logo: Image
  • name: String!
  • # Whether to show the brand name in the associated advert's title.
  • showInAdvertTitle: Boolean!
  • sizeMatrices: [SizeMatrix!]!
  • # The URL subpath associated with the given brand.
  • #
  • # Mostly used for building URLs for advert search results.
  • slug: String!
  • }