You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Helper: Saves the given array of objects in the given index. The `chunkedBatch` helper is used under the hood, which creates a `batch` requests with at most 1000 objects in it.
181
+
/// </summary>
182
+
/// <param name="indexName">The index in which to perform the request.</param>
183
+
/// <param name="objects">The list of `objects` to store in the given Algolia `indexName`.</param>
184
+
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
185
+
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Helper: Deletes every records for the given objectIDs. The `chunkedBatch` helper is used under the hood, which creates a `batch` requests with at most 1000 objectIDs in it.
181
193
/// </summary>
@@ -598,6 +610,19 @@ public List<BatchResponse> SaveObjects<T>(string indexName, IEnumerable<T> objec
0 commit comments