mirror of
https://github.com/hexastack/hexabot
synced 2025-04-03 21:03:26 +00:00
chore: documentation mongoose weird behaviour with hooks/middlewares
This commit is contained in:
parent
dd4ad54d58
commit
c7b9434310
@ -52,6 +52,17 @@ export enum EHook {
|
||||
preUpdateValidate = 'preUpdateValidate',
|
||||
postUpdateValidate = 'postUpdateValidate',
|
||||
}
|
||||
// ! ------------------------------------ Note --------------------------------------------
|
||||
// Methods like `update()`, `updateOne()`, `updateMany()`, `findOneAndUpdate()`,
|
||||
// `findByIdAndUpdate()`, `findOneAndReplace()`, `findOneAndDelete()`, and `findByIdAndDelete()`
|
||||
// do not trigger Mongoose validation hooks by default. This is because these methods do not
|
||||
// return Mongoose Documents but plain JavaScript objects (POJOs), which do not have Mongoose
|
||||
// instance methods like `validate()` attached.
|
||||
//
|
||||
// Be cautious when using the `.lean()` function as well. It returns POJOs instead of Mongoose
|
||||
// Documents, so methods and hooks like `validate()` will not be available when working with
|
||||
// the returned data. If you need validation, ensure that you're working with a Mongoose Document
|
||||
// or explicitly use `runValidators: true` in the options for update operations.
|
||||
|
||||
export abstract class BaseRepository<
|
||||
T extends FlattenMaps<unknown>,
|
||||
|
Loading…
Reference in New Issue
Block a user