Advertisement
shopnilSS

Untitled

May 6th, 2021
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const saveData = await Student.findOne(
  2.                         {
  3.                             userId,
  4.                             "academicInfo.class":className,
  5.                             "academicInfo.isActive": true,
  6.                             "academicInfo.isDeleted": false,
  7.                             _id,
  8.                             "academicInfo.examDetails": {
  9.                                 $elemMatch : {
  10.                                     examType: examType,
  11.                                     examSubject: subject,
  12.                                     totalMarks: totalMark
  13.                                 } //query the data from data base
  14.                             }
  15.                         } //query part
  16.                         {
  17.                             $set : {
  18.                                 "examDetails.$.result.$.totalMark": totalMark,
  19.                                 "examDetails.$.result.$.marks": myMark,
  20.                                 "examDetails.$.result.$.rightAnswer": rightAnswer,
  21.                                 "examDetails.$.result.$.wrongAnswer": wrongAnswer
  22.                             }
  23.                         }, //update part
  24.                         {} //option
  25.                     )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement