mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
31 lines
488 B
TypeScript
31 lines
488 B
TypeScript
export const getCollectionsQuery = /* GraphQL */ `
|
|
query getCollections {
|
|
collections {
|
|
items {
|
|
id
|
|
name
|
|
description
|
|
slug
|
|
productVariants {
|
|
totalItems
|
|
}
|
|
parent {
|
|
id
|
|
}
|
|
children {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export const getCollectionsNameQuery = /* GraphQL */ `
|
|
query getCollections {
|
|
collections{
|
|
items{
|
|
name
|
|
link:slug
|
|
}
|
|
}
|
|
}
|
|
` |