Menu
A navigation menu (link list) including its handle, title, and contained links.
Type Definition
type Menu {
handle: String
levels: Int
links: [Link]
title: String
}Fields
Relationships
The Menu type represents a structured navigation menu that organizes links hierarchically. It contains a collection of Link objects through its links field, which may themselves contain nested child links to form a multi-level menu structure. The levels field indicates the depth of this hierarchy, while the handle provides a unique reference for programmatic menu retrieval.
Example
query {
menu {
handle
levels
title
links {
title
url
}
}
}Implements
This type does not implement any interfaces.