Nested Update with Mongo

I have the following schema:

{ ‘a’:1,
b:[{_id:341432,
c:2
},
{_id:341445,
c:3
}]};

Is there a way, using the REST API, to update the c value from element with _id = 341445 in the b array?.

1 Like