1const query = { "name": "football" };
2const update = {
3 "$push": {
4 "reviews": {
5 "username": "tombradyfan",
6 "comment": "I love football!!!"
7 }
8 }
9};
10const options = { "upsert": false };
11
12itemsCollection.updateOne(query, update, options)
13 .then(result => {
14 const { matchedCount, modifiedCount } = result;
15 if(matchedCount && modifiedCount) {
16 console.log(`Successfully added a new review.`)
17 }
18 })
19 .catch(err => console.error(`Failed to add review: ${err}`))
20