Files
commerce/framework/woocommerce/utils/queries/get-all-collections-query.ts
2021-09-26 17:09:41 +03:00

15 lines
268 B
TypeScript

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