OptionalbenchmarkPass query execution time in milliseconds as second argument to logging function (options.logging).
OptionalbindEither an object of named parameter bindings in the format $param or an array of unnamed
values to bind to $1, $2, etc in your SQL.
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.
OptionaldataThe type of the result. If attribute being aggregated is a defined in the Model,
the default will be the type of that attribute, otherwise defaults to a plain JavaScript number.
OptionaldistinctApplies DISTINCT to the field being aggregated over
OptionalfieldMap returned fields to arbitrary names for SELECT query type if options.fieldMaps is present.
OptionalinstanceA sequelize instance used to build the return instance
OptionalloggingA function that gets executed while running the query to log the sql.
OptionalmapMap returned fields to model's fields if options.model or options.instance is present.
Mapping will occur before building the model instance.
OptionalnestIf true, transforms objects with . separated property names into nested objects using
dottie.js. For example { 'user.username': 'john' } becomes
{ user: { username: 'john' }}. When nest is true, the query type is assumed to be 'SELECT',
unless otherwise specified
OptionalparanoidIf true, only non-deleted records will be returned. If false, both deleted and non-deleted records will be returned.
Only applies if InitOptions.paranoid is true for the model.
OptionalplainSets the query type to SELECT and return a single row
OptionalrawIf true, sequelize will not try to format the results of the query, or build an instance of a model from the result
OptionalreplacementsEither an object of named parameter replacements in the format :param or an array of unnamed
replacements to replace ? in your SQL.
OptionalretryOptionalsupportsIf false do not prepend the query with the search_path (Postgres only)
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.
OptionaltypeThe type of query you are executing. The query type affects how results are formatted before they are
passed back. The type is a string, but Sequelize.QueryTypes is provided as convenience shortcuts.
OptionaluseForce the query to use the write pool, regardless of the query type.
OptionalwhereThe 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.
Options used for Model.aggregate