Closed
Description
In order to support a price range slider, price intervals returned in a product aggregation should be numeric only (no wildcards).
Current price aggregation response:
{
"options": [
{
"count": 1,
"label": "60-70",
"value": "60_70"
},
{
"count": 2,
"label": "90-",
"value": "90_"
}
],
"attribute_code": "price",
"count": 5,
"label": "Price"
}
Expected price aggregation response:
{
"options": [
{
"count": 1,
"label": "60-70",
"value": "60_70"
},
{
"count": 2,
"label": "90-110",
"value": "90_110"
}
],
"attribute_code": "price",
"count": 5,
"label": "Price"
}