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

14 lines
290 B
TypeScript

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