update
Used to get the latest version of all of the records in this array from the adapter.
Example
var people = store.peekAll('person'); people.get('isUpdating'); // false people.update().then(function() { people.get('isUpdating'); // false }); people.get('isUpdating'); // true
Please login to continue.