So lets say we have a bunch of custom objects of a specific class and want to update them all.
How can we do this the most efficient way?
Calling an cloud update individually for each custom object sounds bad...
What i want is something like this comparing to sql UPDATE USER set age="20" WHERE name="doe"
Is this possible without creating a loop that calls a cloud update for every individual object with their id?