v0.32.1 π»
·
964 commits
to refs/heads/main
since this release
This version introduces features released on Meilisearch v1.1.0 π
Check out the changelog of Meilisearch v1.1.0 for more information on the changes.
If you want to adopt new features of this release, update the Meilisearch server to the according version.
π Enhancements
- New search response field
facetStats
providesmin
andmax
value for facets with numeric attributes #1459 - New method
client.multiSearch()
provides the possibility to make multiple request at once #1458
Example:
client.multiSearch({ queries: [
{
indexUid: 'movies',
q: 'pooh'
},
{
indexUid: 'movies',
q: 'nemo'
},
{
indexUid: 'movie_ratings',
q: 'us'
},
]}
)
Thanks again to @bidoubiwa! π