mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
18 lines
256 B
TypeScript
18 lines
256 B
TypeScript
export const getAllFacetsQuery = /* GraphQL */ `
|
|
query facets ($options: FacetListOptions) {
|
|
facets (options: $options){
|
|
totalItems,
|
|
items {
|
|
id
|
|
name
|
|
code
|
|
values {
|
|
id
|
|
name
|
|
code
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|