mirror of
https://github.com/vercel/commerce.git
synced 2025-06-19 21:51:21 +00:00
14 lines
290 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|