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