Class RecordArray
public
Module:
@ember-data/store
A record array is an array that contains records of a certain type (or modelName).
The record array materializes records as needed when they are retrieved for the first
time. You should not create record arrays yourself. Instead, an instance of
RecordArray
or its subclasses will be returned by your application's store
in response to queries.
This class should not be imported and instantiated by consuming applications.
isUpdating public
Module:
@ember-data/store
Defined in ../packages/store/src/-private/record-arrays/identifier-array.ts:156
The flag to signal a RecordArray
is currently loading data.
Example
let people = store.peekAll('person');
people.isUpdating; // false
people.update();
people.isUpdating; // true