I was wondering if there is any way for the JS API to update an object without actually retrieving it. For example, update a field in an object of which i know its objectID or other field value i set.
update status = ‘ok’ where id = 2301.
If not, can it be done through REST?
Having to retrieve a whole object to change a field is quite inefficient in terms of network traffic and latency, as it involves the step of retrieving and then save (update).