I have a schema Foo which has pre and post save hooks.
For a special debugging application I'm writing, I grab all the active Foo objects. Then, save them as a subdocument as part of a History schema.
When I save it as part of the subdocument, I do not want my pre/post save hooks to execute.
What's the best way to handle this?
I'd like to avoid having to extract all the data from the Foo object then saving in an new non-mongoose object.