commerce/framework/saleor/utils/queries/get-all-collections-query.ts

15 lines
322 B
TypeScript

const getSiteCollectionsQuery = /* GraphQL */ `
query getSiteCollections($first: Int!, $channel: String = "default-channel") {
collections(first: $first, channel: $channel) {
edges {
node {
id
name
slug
}
}
}
}
`
export default getSiteCollectionsQuery