Documentation
    Preparing search index...

    Interface BulkDeleteQueryOptions<TAttributes>

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

    Type Parameters

    • TAttributes = any

    Hierarchy (View Summary)

    Index
    limit?: number | Nullish | Literal
    offset?: number | Nullish | Literal
    replacements?: BindOrReplacements

    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.