mongoose-autopopulate-extend
v2.1.0
Published
Mongoose Autopopulate global configuration
Downloads
14
Maintainers
Readme
Mongoose Autopopulate Global Option
Installation
Install using npm
npm i mongoose-autopopulate-extend mongoose-autopopulate --save
yarn add mongoose-autopopulate-extend mongoose-autopopulate
Plugin Options
const mongoose = require("mongoose");
var mongoose_autopopulate_extend = require("mongoose-autopopulate-extend");
mongoose.plugin(mongoose_autopopulate_extend, globalOptions);
- Local Option will override global options for a field
Example:
mongoose.plugin(mongoose_autopopulate_extend, {
match: { status: "ENABLED", deleted: false },
maxDepth: 1
});