Imagine a bug tracker.
Each ticket contains a lot of data. Now the status of several tickets from the long list of tickets is updated.
App.Ticket = DS.Model.extend({ id: DS.attr('number'), status: DS.attr('string'), ... });
Currently, when save called in ember-data, this will send complete models to the server.
What can be done to send only a partial update, for example [{"id": 1, "status": "closed"}, {...}] ?
PS: I understand that this is impossible now, so I wonder if there is a workaround / modification that would allow this to be done? (one-stop solution is not required).
source share