UNPKG

mongoose-hint

Version:

Generate hints for Mongoose queries on the fly

21 lines (17 loc) 296 B
'use strict'; const mongoose = require('mongoose'); const PlayerSchema = mongoose.Schema({ username: String, organization: String, team: String, rank: Number, country: { type: String, enum: [ 'US', 'UK', 'CA', ], }, }); module.exports = PlayerSchema;