Zhexuan Liu
09/29/2024, 4:59 PM<InstantSearch />
with typesense.
Context from our side is we are migrating from Algolia to Typesense, and so in our UI we were using <InstantSearch />
and <Configure />
widget
So we've successfully adapted typesense search client with <InstantSearch />
by using the typesense-instantsearch-adaptor lib, that's really awesome. My question comes to the <Configure />
widget, where we were passing filters to algolia like <Configure filters={filters} />
, now with typesense, because typesense's filter param is called filter_by
, should we change to <Configure filter_by={filters} />
?
I remember once I should change it to filter_by
but now it turns out I should keep using filters
, so I'm a little not sure and want to ask and confirm from the community. Thank you!Jason Bosco
09/29/2024, 11:12 PM<Configure filters={typesense_filter_by_string} />
Zhexuan Liu
09/30/2024, 3:42 AM