1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-08 18:57:51 +00:00
2021-06-02 11:46:38 -03:00

22 lines
324 B
TypeScript

export const getCollectionsQuery = /* GraphQL */ `
query getCollections {
collections {
items {
id
name
description
slug
productVariants {
totalItems
}
parent {
id
}
children {
id
}
}
}
}
`