2.1.0 • Published 4 years ago

mongoose-autopopulate-extend v2.1.0

Weekly downloads
2
License
MIT
Repository
-
Last release
4 years ago

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
});