mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
13 lines
216 B
TypeScript
13 lines
216 B
TypeScript
export const getAllCollectionsQuery = /* GraphQL */ `
|
|
query collections ($options: CollectionListOptions) {
|
|
collections (options: $options){
|
|
totalItems,
|
|
items {
|
|
id
|
|
name
|
|
slug
|
|
}
|
|
}
|
|
}
|
|
`
|