commerce/lib/saleor/queries/GetMenuBySlug.graphql
Michal Miszczyszyn a8e49ee3f4
Saleor
2023-05-02 00:32:20 +02:00

22 lines
289 B
GraphQL

query GetMenuBySlug($slug: String!) {
menu(slug: $slug, channel: "default-channel") {
id
slug
name
items {
id
name
url
collection {
slug
}
children {
id
collection {
slug
}
}
}
}
}