menu
Get a specific link list/menu by handle
Authentication
Authentication Required: Secret API key with scope
navigation:read
Query Structure
{
menu(handle: String!) {
handle
levels
links
title
}
}Arguments
Return Type
Menu - A navigation menu (link list) including its handle, title, and contained links.
Example
{
menu(handle: "main-navigation") {
handle
title
levels
links {
title
url
}
}
}