mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 00:46:59 +00:00
14 lines
277 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|