You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: lib/model.js
+12-2
Original file line number
Diff line number
Diff line change
@@ -3375,6 +3375,7 @@ function _setIsNew(doc, val) {
3375
3375
* trip to MongoDB.
3376
3376
*
3377
3377
* Mongoose will perform casting on all operations you provide.
3378
+
* The only exception is [setting the `update` operator for `updateOne` or `updateMany` to a pipeline](https://www.mongodb.com/docs/manual/reference/method/db.collection.bulkWrite/#updateone-and-updatemany): Mongoose does **not** cast update pipelines.
3378
3379
*
3379
3380
* This function does **not** trigger any middleware, neither `save()`, nor `update()`.
3380
3381
* If you need to trigger
@@ -3410,6 +3411,15 @@ function _setIsNew(doc, val) {
Copy file name to clipboardexpand all lines: lib/query.js
+2-2
Original file line number
Diff line number
Diff line change
@@ -3880,7 +3880,7 @@ Query.prototype._replaceOne = async function _replaceOne() {
3880
3880
* - `updateMany()`
3881
3881
*
3882
3882
* @param {Object} [filter]
3883
-
* @param {Object|Array} [update] the update command
3883
+
* @param {Object|Array} [update] the update command. If array, this update will be treated as an update pipeline and not casted.
3884
3884
* @param {Object} [options]
3885
3885
* @param {Boolean} [options.multipleCastError] by default, mongoose only returns the first error that occurred in casting the query. Turn on this option to aggregate all the cast errors.
3886
3886
* @param {Boolean|String} [options.strict] overwrites the schema's [strict mode option](https://mongoosejs.com/docs/guide.html#strict)
* @param {Object|Array} [update] the update command
3953
+
* @param {Object|Array} [update] the update command. If array, this update will be treated as an update pipeline and not casted.
3954
3954
* @param {Object} [options]
3955
3955
* @param {Boolean} [options.multipleCastError] by default, mongoose only returns the first error that occurred in casting the query. Turn on this option to aggregate all the cast errors.
3956
3956
* @param {Boolean|String} [options.strict] overwrites the schema's [strict mode option](https://mongoosejs.com/docs/guide.html#strict)
0 commit comments