Skip to main content
Module

x/mongoose/lib/validoptions.js

MongoDB object modeling designed to work in an asynchronous environment.
Go to Latest
File

/*! * Valid mongoose options */
'use strict';
const VALID_OPTIONS = Object.freeze([ 'allowDiskUse', 'applyPluginsToChildSchemas', 'applyPluginsToDiscriminators', 'autoCreate', 'autoIndex', 'bufferCommands', 'bufferTimeoutMS', 'cloneSchemas', 'debug', 'id', 'timestamps.createdAt.immutable', 'maxTimeMS', 'objectIdGetter', 'overwriteModels', 'returnOriginal', 'runValidators', 'sanitizeFilter', 'sanitizeProjection', 'selectPopulatedPaths', 'setDefaultsOnInsert', 'strict', 'strictPopulate', 'strictQuery', 'toJSON', 'toObject']);
module.exports = VALID_OPTIONS;