@@ -412,6 +412,7 @@ class BelongsToMany extends Association {
...
@@ -412,6 +412,7 @@ class BelongsToMany extends Association {
* @param {string|boolean} [options.scope] Apply a scope on the related model, or remove its default scope by passing false
* @param {string|boolean} [options.scope] Apply a scope on the related model, or remove its default scope by passing false
* @param {string} [options.schema] Apply a schema on the related model
* @param {string} [options.schema] Apply a schema on the related model
* @param {object} [options.through.where] An optional where clause applied to through model (join table)
* @param {object} [options.through.where] An optional where clause applied to through model (join table)
* @param {boolean} [options.through.paranoid=true] If true, only non-deleted records will be returned from the join table. If false, both deleted and non-deleted records will be returned. Only applies if through model is paranoid
*
*
* @returns {Promise<Array<Model>>}
* @returns {Promise<Array<Model>>}
*/
*/
...
@@ -453,6 +454,7 @@ class BelongsToMany extends Association {
...
@@ -453,6 +454,7 @@ class BelongsToMany extends Association {