Interface DeleteManyModel<TSchema>

Represents a deleteMany operation that can be used in a bulk write operation.

interface DeleteManyModel<TSchema> {
    filter: Filter<TSchema>;
}

Type Parameters

Properties

Properties

filter: Filter<TSchema>

The filter to choose the documents to delete.