Interface HasManyAddAssociationMixinOptions<T>

The options for the addAssociation mixin of the hasMany association.

See

HasManyAddAssociationMixin

Type Parameters

Hierarchy

Properties

association?: boolean
benchmark?: boolean

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

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?: boolean | ((sql: string, timing?: number) => void)

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

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 | (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.

If CLS is enabled and a transaction is running in the current CLS context, that transaction will be used, unless null or a 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.

Generated using TypeDoc