OBJECT Menu
Menu de navegação configurado na loja com itens hierárquicos.
Campos
| Campo | Tipo | Descrição |
| id | ID! | ID do menu. |
| title | String! | Título do menu. |
| items | [MenuItem] | Itens do menu. |
| Campo | Tipo | Descrição |
| title | String! | Texto do item. |
| href | String! | Link de destino. |
| children | [MenuItem] | Sub-itens (suporte a dropdown, recursivo). |
Query
query {
client(hostname: "minha-loja") {
menus {
id
title
items {
title
href
children {
title
href
}
}
}
}
}
Resposta
{
"data": {
"client": {
"menus": [
{
"id": "menu1",
"title": "Principal",
"items": [
{ "title": "Início", "href": "/", "children": [] },
{
"title": "Categorias",
"href": "#",
"children": [
{ "title": "Roupas", "href": "/categoria/roupas" },
{ "title": "Acessórios", "href": "/categoria/acessorios" }
]
},
{ "title": "Contato", "href": "/contato", "children": [] }
]
}
]
}
}
}