Interface DeleteOneModel<TSchema>

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

Field

filter - The filter to choose the document to delete.

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

Type Parameters

Properties

Properties

filter: Filter<TSchema>

The filter to choose the document to delete.