Interface DeleteStatement

interface DeleteStatement {
    collation?: CollationOptions;
    hint?: Hint;
    limit: number;
    q: Document;
}

Properties

Properties

collation?: CollationOptions

Specifies the collation to use for the operation.

hint?: Hint

A document or string that specifies the index to use to support the query predicate.

limit: number

The number of matching documents to delete.

The query that matches documents to delete.