Skip to content
Advertisement

Update single field value in nested array without modifying other ones?

I am trying to modify single field value, but whenever I do it it erases all other fields leaving updated field only, how can I modify a single field witouth affecting the other ones? so far this is what I’m doing:

JavaScript

This is the original mongo Object:

JavaScript

With my changes it erases origenes array, ciudad_id and nombre destino, leaving it this way:

JavaScript

Advertisement

Answer

With this code:

JavaScript

you are targeting the destinos.$[d] element and replacing all of its contents with the new data structure.

You need to use the .(dot) notation to target each element in the nested array. It’s a bit verbose but this would work:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement