Interface DeleteManyResult

Represents the result of a delete command.

Field

deletedCount - The number of deleted documents. Can be any non-negative integer.

See

Collection.deleteMany

interface DeleteManyResult {
    deletedCount: number;
}

Properties

Properties

deletedCount: number

The number of deleted documents.