Given the following sample collection document:
{ "timestamp": 1413543986, "message": "message", "readed": { "8": null, "9": null, "22": null }, "type": "1014574149174" }
How to update the value of a specific key in an object using the "readed" key? For example, the update value for the key is "8":
... "8": 10, ...
source share