Hãy thử điều này
db.collection.update(
{ _id : ObjectId("57315ba4846dd82425ca2408")},
{ $pull: {"myarray.userId": ObjectId("570ca5e48dbe673802c2d035")}}
)
db.collection.update(
{ _id : ObjectId("57315ba4846dd82425ca2408")},
{ $push: {"myarray": {
userId:ObjectId("570ca5e48dbe673802c2d035"),
point: 10
}}
)
Giải thích:trong trạng thái đầu tiên $pull
xóa phần tử có userId= ObjectId("570ca5e48dbe673802c2d035")
từ mảng trên tài liệu nơi _id = ObjectId("57315ba4846dd82425ca2408")
Trong cái thứ hai $push
insertsthis object { userId:ObjectId("570ca5e48dbe673802c2d035"), point: 10 }
trong cùng một mảng.