I have rangeInput field, which has Min and Max input, where user can add price to search, I have below code for price search.
customRangeInput({
container: document.querySelector('#range-input'),
attribute: 'price',
}),
and I am adding as facet like below:
curl \
-X POST 'https://search.example.com/indexes/maps/settings' \
--data '{
"searchableAttributes": [ "price" ]
}' -H "X-Meili-API-Key: xxxxxx"
but it says Price is not set as facet. can we not se numeric value in facet? (Attribute price is not set as facet) any help would be great.
Thanks Sanjay