GitHub

CategoryNode

import { CategoryNode } from '@daffodil/navigation/driver/magento'

interface CategoryNode {
  __typename: string
  uid: string
  url_path: string
  url_suffix: string
  name: string
  include_in_menu: boolean
  product_count: number
  level: number
  children_count: number
  children: CategoryNode[]
  position: number
  breadcrumbs: MagentoBreadcrumb[]
}