instantsearch icon indicating copy to clipboard operation
instantsearch copied to clipboard

addNumericRefinement does not allow multiple operators

Open danielgomezrico opened this issue 4 years ago • 3 comments

I want to put multiple numeric filters with different operators and do an or between all of them.

Currently

helper.addNumericRefinement('rooms', '=', ['42', '56', '37'] ).search();

Expected

helper.addNumericRefinement('rooms', ['=42', '=56', '>=37'] ).search();

danielgomezrico avatar Oct 02 '19 22:10 danielgomezrico