nickzuck_007

Change Array element

May 28th, 2019
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.44 KB | None | 0 0
  1. db.getCollection('products').update({
  2.     "_id": ObjectId("5b13a6cd3085b36a286148b1"),
  3.     "classSubjects.id" : ObjectId("5cecd8b65d268603eb016ef3")
  4. },
  5.  
  6. {
  7.         $set: {"classSubjects.$" : {
  8.             "id" : ObjectId("5cecd8b65d268603eb016ef3"),
  9.             "name" : [
  10.                 {
  11.                     "language" : "English",
  12.                     "value" : "MySubject1 Changed"
  13.                 }
  14.             ]
  15.         }, }
  16. }
  17. )
Advertisement
Add Comment
Please, Sign In to add comment