Private
Optional
[COMPLETES_Indicates if the query completes the transaction Internal only
Optional
associationOptional
benchmarkPass query execution time in milliseconds as second argument to logging function (options.logging).
Optional
connectionThe 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.
Optional
destroyDelete the associated model. Default to false.
Only applies if the foreign key is nullable. If the foreign key is not nullable, the associated model is always deleted.
Optional
fieldsAn optional array of strings, representing database columns. If fields is provided, only those columns will be validated and saved.
Optional
hooksIf false
the applicable hooks will not be called.
The default value depends on the context.
true
Optional
loggingA function that gets executed while running the query to log the sql.
Optional
timing: numberOptional
omitA flag that defines if null values should be passed as values or not.
false
Optional
rawIf set to true, field and virtual setters will be ignored
Optional
resetClear all previously set data values
Optional
returningReturn the affected rows (only for postgres)
Optional
searchAn optional parameter to specify the schema search_path (Postgres only)
Optional
silentIf true, the updatedAt timestamp will not be updated.
false
Optional
transactionThe 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.
Optional
validateIf false, validations won't be run.
true
The options for the removeAssociations mixin of the hasMany association.
See
HasManyRemoveAssociationsMixin