Skip to content

Instantly share code, notes, and snippets.

@mrhm-dev
Forked from bnoguchi/enum-access.js
Created January 6, 2018 14:48
Show Gist options
  • Save mrhm-dev/7433dfdf1dae1457504a3cd24a9cca3b to your computer and use it in GitHub Desktop.
Save mrhm-dev/7433dfdf1dae1457504a3cd24a9cca3b to your computer and use it in GitHub Desktop.
How to access enumValues in mongoose from a Model or Document
var mongoose = require('./index')
, TempSchema = new mongoose.Schema({
salutation: {type: String, enum: ['Mr.', 'Mrs.', 'Ms.']}
});
var Temp = mongoose.model('Temp', TempSchema);
console.log(Temp.schema.path('salutation').enumValues);
var temp = new Temp();
console.log(temp.schema.path('salutation').enumValues);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment