How to manipulate record state manually?

push has a third parameter: _partial

I guess if you pass true, the other properties won’t be affected.

controller.store.push('comment', { id: data.id, text: data.text }, true);
1 Like