entity type.
The client-side source from where the entities are being retrieved. An array of entity instances with default sort order and no filtering applied.
Clears items.
Total number of entities available in the source. MobX observable.
Deletes an entity instance from the source.
An object describing the filtering criteria. MobX observable.
Retrieved entity instances. MobX observable.
Maximum number of entities to retrieve. MobX observable.
Retrieves the entity instances. Once retrieval is complete, the instances will be available as items. When the source of entity instances is REST API, this method will by default request a total count of entity instances to be sent along with the retrieved instances. This number will be stored as count. Use skipCount to disable this behavior.
Position of the first entity to retrieve. Useful if you want to skip first N entities (for example, in a pagination scenario). MobX observable.
Not implemented
A deep copy of items.
Sort order. Property name opionally preceeded by +
or -
character.
If the name is preceeded by +
, or there is no preceeding character, then the sort order is ascending.
If the name is preceeded by -
, then the sort order is descending.
MobX observable.
Name of the ID attribute of a String ID entity. Indicates that the entity is a String ID entity. Mandatory for String ID entities, shall be omitted otherwise.
Name of a view used to limit the entity graph. MobX observable.
Generated using TypeDoc
A variant of DataCollectionStore that works with a client-side source of entities.