Magidoc

allCategories
Query

Unfiltered and unpaginated list of the shop's categories.

Response

#

Returns [Category !].

Example

#

    query (
  $before: String
  $after: String
  $first: Int
  $last: Int
  $filter: ProductFilterInput
  $sortBy: ProductOrder
  $before2: String
  $after2: String
  $first2: Int
  $last2: Int
  $before3: String
  $after3: String
  $first3: Int
  $last3: Int
  $size: Int
) {
  allCategories {
    id
    description
    descriptionHtml
    externalId
    externalSource
    seoTitle
    seoDescription
    name
    slug
    parent {
      id
      description
      descriptionHtml
      externalId
      externalSource
      seoTitle
      seoDescription
      name
      slug
      allowProductAssignment
      level
    }
    allowProductAssignment
    level
    privateMetadata {
      key
      value
    }
    metadata {
      key
      value
    }
    ancestors(before: $before, after: $after, first: $first, last: $last) {
      totalCount
    }
    products(
      filter: $filter
      sortBy: $sortBy
      before: $before2
      after: $after2
      first: $first2
      last: $last2
    ) {
      totalCount
    }
    children(before: $before3, after: $after3, first: $first3, last: $last3) {
      totalCount
    }
    backgroundImage(size: $size) {
      url
      alt
    }
    trailingBreadcrumbs {
      id
      description
      descriptionHtml
      externalId
      externalSource
      seoTitle
      seoDescription
      name
      slug
      allowProductAssignment
      level
    }
    customFields {
      templated
    }
  }
}

  

3