I have records on my table like
{
_id: '1234',
name: 'name1',
age: 32
}
{
_id: '1235',
name: 'name1',
age: 34
}
So I want to update both or many records together with age: 34 for 1234 and 36 for 125. Is this possible to update these records in bulk?