How to update the following registry:
"_id": "56dd4489800f800000000000", "registro": "2014-09-07T09:06:17.214Z", "stars": 0, "observacoes": [ { "texto": "", "dataResposta": "",How to update an element of array observations using mongoose? I tested some solutions of the type that follow, but to no avail.
"idUsuario": "56dc9f9f68d7078888888888", "id":2211 }, { "texto": "", "dataResposta": "",
"idUsuario": "56dc9f9f68d707888877778", "id":2212 } ]
Registro.update( {_id : req.body._id, "observacoes.id":2212}, { $inc : {stars : 1}, $set:{texto:"Novo texto", dataResposta: new Date()}}, {multi:false}, function(error, regAfetados){...});