mongoose-merge-plugin
v0.0.5
Published
Merge plugin for mongoose documents
Downloads
2,908
Readme
mongoose-merge-plugin
Mongoose plugin for document merging
Install npm install mongoose-merge-plugin
Loading
var merge = require('mongoose-merge-plugin');
Inintialization
var mongoose = require('mongoose');
mongoose.plugin(merge);
Usage
The method merge is added to all mongoose documents. It takes a source object as parameter and merge it in the target existing documents. It checks for existing values in the source object regarding the field path of the destination document. It does not merge the _id and __v default fields and check for the schema field option mergeable. If the option is false, the merge skip the field as well.
The method merge accept a second parameter that is the merge options. this parameter allow to specify a filter on fields when calling the merge.
- options.fields
It is a string with field names, separeted by one or more spaces. If the field path is present in this string, the merge check if the mongoose field is mergeable and if yes it allows the merge. If before the field path a + flag is added, then the field will be merged (overriding the schema field option). If the flag is '-' the field will not be merged as well as if the field name is not present.
- options.virtuals
It is a boolean value that activates the merging of the virtuals fields
Example
Support
it-tweaks