1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-25 02:46:58 +00:00
commerce/framework/shopify/utils/queries/get-all-collections-query.ts
2021-02-04 13:23:44 +02:00

15 lines
268 B
TypeScript

const getSiteCollectionsQuery = /* GraphQL */ `
query getSiteCollections($first: Int!) {
collections(first: $first) {
edges {
node {
id
title
handle
}
}
}
}
`
export default getSiteCollectionsQuery