4
0
forked from crowetic/commerce
commerce/framework/swell/utils/queries/get-all-collections-query.ts
2021-03-02 21:05:13 -06:00

15 lines
268 B
TypeScript

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