OptionalbenchmarkPass query execution time in milliseconds as second argument to logging function (options.logging).
OptionalconnectionThe 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.
OptionalforceIf set to true, paranoid models will actually be deleted
OptionalhooksIf false the applicable hooks will not be called.
The default value depends on the context.
OptionalloggingA function that gets executed while running the query to log the sql.
OptionaltransactionThe 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.
The options for the removeAssociation mixin of the belongsToMany association.
See
BelongsToManyRemoveAssociationMixin