ЗДЕСЬ СХЕМА
const DollSchema = new mongoose.Schema({
firstName: {type:String, trim:true},
lastName: {type:String, trim:true},
stabCount: {type:Number},
isActive: {type:Boolean},
curses: [{type: String}]
});
const Doll = mongoose.model('doll', DollSchema);
ЗДЕСЬ КОД, КОТОРЫЙ ДОЛЖЕН СДЕЛАТЬ ЕГО В АРХИВ
Doll.findOne({firstName:req.body.firstName, lastName:req.body.lastName})
.then(dolls => dolls.curses.push(req.body.curse))
.catch(err => console.log(err));