| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- query {
- search(input: {
- take: 20
- groupByProduct: true
- }) {
- items {
- productId
- productVariantId
- productName
- productVariantName
- productAsset {
- preview
- }
- productVariantAsset {
- preview
- }
- price {
- ... on PriceRange {
- min
- max
- }
- ... on SinglePrice {
- value
- }
- }
- score
- }
- totalItems
- facetValues {
- count
- facetValue {
- id
- name
- facet {
- id
- name
- }
- }
- }
- }
- }
|