Skip to content

Commit 199106d

Browse files
committed
Added readme title for batch methods
1 parent 42a9526 commit 199106d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,12 +397,16 @@ Or using the index object:
397397

398398
`index.addDocuments(documents: Document<T>[]): Promise<EnqueuedUpdate>`
399399

400+
- [Add or replace multiple documents in batches](https://docs.meilisearch.com/reference/api/documents.html#add-or-replace-documents):
401+
400402
`index.addDocumentsInBatch(documents: Document<T>[], batchSize = 1000): Promise<EnqueuedUpdate[]>`
401403

402404
- [Add or update multiple documents](https://docs.meilisearch.com/reference/api/documents.html#add-or-update-documents):
403405

404406
`index.updateDocuments(documents: Document<T>[]): Promise<EnqueuedUpdate>`
405407

408+
- [Add or update multiple documents in batches](https://docs.meilisearch.com/reference/api/documents.html#add-or-update-documents):
409+
406410
`index.updateDocumentsInBatch(documents: Document<T>[], batchSize = 1000): Promise<EnqueuedUpdate[]>`
407411

408412
- [Get Documents](https://docs.meilisearch.com/reference/api/documents.html#get-documents):

0 commit comments

Comments
 (0)