mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 22:11:22 +00:00
15 lines
322 B
TypeScript
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
|