group.js 241 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 const mongoose = require("mongoose"); const { Schema } = mongoose; const GroupSchema = new Schema({ members: [{ type: Schema.Types.ObjectId, ref: 'User' }] }); const Group = mongoose.model('Group',GroupSchema); module.exports = Group;