GitHub

ShopifyMenu

interface

import { ShopifyMenu } from '@daffodil/driver/shopify'

A navigation menu representing a hierarchy of hyperlinks (items).

interface ShopifyMenu {
  __typename: "Menu"
  handle: string
  id: string
  items: ShopifyMenuItem[]
  itemsCount: number
  title: string
}

Properties

__typename
"Menu"
handle
string

The menu's handle.

id
string

A globally-unique ID.

items
ShopifyMenuItem[]

The menu's child items.

itemsCount
number

The count of items on the menu.

title
string

The menu's title.