Interface HasManyAddAssociationMixinOptions<T>

The options for the addAssociation mixin of the hasMany association.

See

HasManyAddAssociationMixin

interface HasManyAddAssociationMixinOptions<T> {
    [COMPLETES_TRANSACTION]?: boolean;
    association?: boolean;
    benchmark?: boolean;
    connection?: null | AbstractConnection;
    fields?: (keyof Attributes<T>)[];
    hooks?: boolean;
    logging?: false | ((sql, timing?) => void);
    omitNull?: boolean;
    raw?: boolean;
    reset?: boolean;
    returning?: boolean | (Col | Literal | keyof Attributes<T>)[];
    searchPath?: string;
    silent?: boolean;
    transaction?: null | Transaction;
    validate?: boolean;
    where?: WhereOptions<Attributes<T>>;
}

Type Parameters

Hierarchy (view full)

Properties

[COMPLETES_TRANSACTION]?: boolean

Indicates if the query completes the transaction Internal only

association?: boolean
benchmark?: boolean

Pass query execution time in milliseconds as second argument to logging function (options.logging).

connection?: null | AbstractConnection

The connection on which this query must be run. Mutually exclusive with Transactionable.transaction.

Can be used to ensure that a query is run on the same connection as a previous query, which is useful when configuring session options.

Specifying this option takes precedence over CLS Transactions. If a transaction is running in the current AsyncLocalStorage context, it will be ignored in favor of the specified connection.

fields?: (keyof Attributes<T>)[]

An optional array of strings, representing database columns. If fields is provided, only those columns will be validated and saved.

hooks?: boolean

If false the applicable hooks will not be called. The default value depends on the context.

Default

true
logging?: false | ((sql, timing?) => void)

A function that gets executed while running the query to log the sql.

Type declaration

    • (sql, timing?): void
    • Parameters

      • sql: string
      • Optional timing: number

      Returns void

omitNull?: boolean

A flag that defines if null values should be passed as values or not.

Default

false
raw?: boolean

If set to true, field and virtual setters will be ignored

reset?: boolean

Clear all previously set data values

returning?: boolean | (Col | Literal | keyof Attributes<T>)[]

Return the affected rows (only for postgres)

searchPath?: string

An optional parameter to specify the schema search_path (Postgres only)

silent?: boolean

If true, the updatedAt timestamp will not be updated.

Default

false
transaction?: null | Transaction

The transaction in which this query must be run. Mutually exclusive with Transactionable.connection.

If the Sequelize disableClsTransactions option has not been set to true, and a transaction is running in the current AsyncLocalStorage context, that transaction will be used, unless null or another Transaction is manually specified here.

validate?: boolean

If false, validations won't be run.

Default

true

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.