interface BulkDeleteQueryOptions {
    limit?: Nullish<number | Literal>;
    offset?: Nullish<number | Literal>;
    replacements?: BindOrReplacements;
    where?: WhereOptions<any>;
}

Hierarchy (view full)

Properties

limit?: Nullish<number | Literal>
offset?: Nullish<number | Literal>
replacements?: BindOrReplacements
where?: WhereOptions<any>

The WHERE clause. Can be many things from a hash of attributes to raw SQL.

Visit https://sequelize.org/docs/v7/core-concepts/model-querying-basics/ for more information.

Generated using TypeDoc