mirror of
https://github.com/vercel/commerce.git
synced 2025-05-22 09:26:59 +00:00
22 lines
206 B
GraphQL
22 lines
206 B
GraphQL
fragment Menu on Menu {
|
|
id
|
|
name
|
|
items {
|
|
...MenuItem
|
|
}
|
|
}
|
|
fragment MenuItem on MenuItem {
|
|
id
|
|
name
|
|
url
|
|
collection {
|
|
slug
|
|
}
|
|
children {
|
|
id
|
|
collection {
|
|
slug
|
|
}
|
|
}
|
|
}
|