UNPKG

jsonapi-server-mini

Version:

Minimalistic JSON:API server for Node.js and MongoDB

19 lines (16 loc) 289 B
module.exports = ({mongoose}) => ({ schema : new mongoose.Schema({ title : String, description : String, projectStart: Date, projectEnd : Date, tags : [String], isActive : Boolean }), indexes : { title : 'text', description : 'text' }, create : {}, find : {} })