Delete documents (TypeScript)
Finds documents in a collection using filter clauses, and then deletes those documents.
|
If you don’t use a filter, or if you use an empty filter, then this method deletes all documents in the collection. |
This method does not support sort parameters, including vector search.
If you want to use sort parameters to find documents, use the method to find documents instead.
Then, use the method to delete a single document to delete each found document by ID.
|
Ready to write code? See the examples for this method to get started. If you are new to the Data API, check out the quickstart. |
Result
Deletes documents that match the specified parameters and returns a promise that resolves to a CollectionDeleteManyResult object that includes details about the operation.
A result that includes a deleted count of -1 indicates that every document in the collection was deleted.
Example resolved response:
{ deletedCount: 1 }
Parameters
Use the deleteMany method, which belongs to the Collection class.
Method signature
async deleteMany(
filter: CollectionFilter<Schema>,
options?: {
timeout?: number | TimeoutDescriptor,
},
): CollectionDeleteManyResult
| Name | Type | Summary | ||
|---|---|---|---|---|
|
An object that defines filter criteria using the Data API filter syntax. The method only finds documents that match the filter criteria. Filters can improve performance by reducing the number of documents that the Data API processes. You must use For a list of available filter operators and more examples, see Filter operators for collections (TypeScript). Filters can use only indexed fields. If you apply selective indexing when you create a collection, you cannot reference non-indexed fields in a filter. For an example, see Delete documents that match a filter.
|
|||
|
|
Optional.
The options for this operation. See Properties of |
| Name | Type | Summary |
|---|---|---|
|
|
Optional. The timeout(s) to apply to this method.
You can specify For more information about the |
Examples
The following examples demonstrate how to delete documents in a collection.
Delete documents that match a filter
You can use a filter to find documents that match specific criteria.
For example, you can find documents with an is_checked_out value of false and a number_of_pages value less than 300.
For a list of available filter operators and more examples, see Filter operators for collections (TypeScript).
Filters can use only indexed fields. If you apply selective indexing when you create a collection, you cannot reference non-indexed fields in a filter.
import {
DataAPIClient,
UsernamePasswordTokenProvider,
} from "@datastax/astra-db-ts";
// Get an existing collection
const client = new DataAPIClient({ environment: "hcd" });
const database = client.db("API_ENDPOINT", {
token: new UsernamePasswordTokenProvider("USERNAME", "PASSWORD"),
keyspace: "KEYSPACE_NAME",
});
const collection = database.collection("COLLECTION_NAME");
// Delete documents
(async function () {
const result = await collection.deleteMany({
$and: [{ is_checked_out: false }, { number_of_pages: { $lt: 300 } }],
});
console.log(result);
})();
Delete all documents
To delete all documents, use an empty filter.
A result that includes a deleted count of -1 indicates that every document in the collection was deleted.
import {
DataAPIClient,
UsernamePasswordTokenProvider,
} from "@datastax/astra-db-ts";
// Get an existing collection
const client = new DataAPIClient({ environment: "hcd" });
const database = client.db("API_ENDPOINT", {
token: new UsernamePasswordTokenProvider("USERNAME", "PASSWORD"),
keyspace: "KEYSPACE_NAME",
});
const collection = database.collection("COLLECTION_NAME");
// Delete documents
(async function () {
const result = await collection.deleteMany({});
console.log(result);
})();
Delete more than 20 documents
The client automatically issues multiple Data API HTTP requests to delete all documents that match your filter.
Client reference
For more information, see the client reference.