commerce/packages/saleor/utils/queries/collection-many.ts
2022-01-14 18:29:24 -05:00

14 lines
277 B
TypeScript

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