Skip to content

v0.22.1 🌻

Choose a tag to compare

@meili-bot meili-bot released this 12 Oct 14:11
· 1728 commits to main since this release
842e95e

Changes

Document in Batches

This method will let you add documents in batches of 1000 documents instead of all at once.

await client
      .index("myIndex")
      .addDocumentsInBatches(dataset, 1000)

This method will let you update documents in batches of 1000 documents instead of all at once.

await client
      .index("myIndex")
      .updateDocumentsInBatches(dataset, 1000)

Raw index data

Instead of having an instance of Index returned, you receive the raw json returned by MeiliSearch.

await client
          .index("myIndex")
          .getRawInfo()

Thanks again to @K-Kumar-01, @SandunWebDev, @artfuldev, @bidoubiwa, @curquiza, @daniloff200, and @vishnugt! 🎉