saleor-apps-redis_apl/.changeset/selfish-kids-heal.md
Lukasz Ostrowski 1982d81f17
Extend pricing data in Algolia (#998)
Co-authored-by: Krzysztof Wolski <krzysztof.k.wolski@gmail.com>
2023-09-08 14:05:37 +02:00

33 lines
No EOL
472 B
Markdown

---
"saleor-app-search": minor
---
Added a new `pricing` field to the Algolia object representation. It now passes variant pricing representation from GraphQL:
```graphQL
price {
gross {
amount
}
net {
amount
}
}
discount {
gross {
amount
}
net {
amount
}
}
onSale
priceUndiscounted {
gross {
amount
}
net {
amount
}
}
```