I have this really annoying issue where i can't update anything using mongoose. It's really frustrating to use, and the documentation is not helping at all.
I have this schema:
var userSchema = mongoose.Schema({
    local            : {
        email        : String,
        password     : String,
    },
    devices : [{
      id : String,
      name : String
    }]
});
And this is the code where i want to add a device to the array devices :
function updateDeviceList(user, deviceID, deviceName)
{
  User.update({ 'local.email' : user}, 
  { $set: {'devices.id' : deviceID, 'devices.name' : deviceName}}, 
  function(err, response)
  {
    if(err)
    {
      console.log("Update device error", err);
    }
    else {
      console.log("Update device OK");
    }
  });
}
At this point i get the error: 
errmsg: 'cannot use the part (devices of devices.id) to traverse the element ({devices: []})' }
I didn't manage to find an explanation to why this is happening. I have to mention that the document (there is pretty much only one document in the database), is this one:
{
    "_id": {
        "$oid": "5585a196fe11b21100635c74"
    },
    "devices": [],
    "local": {
        "password": "$2a$10$7hXVHw7izcYlqbD6xe/te.0w2zucZ7lA007g9kXdoIMPhZhRyCIru",
        "email": "a@a.a"
    },
    "__v": 0
}
 
     
    