entity type.
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
Retrieves entity instances from some source (such as the Generic REST API) based on given criteria such as filters, sort order, limit and offset. When entities are retrieved from REST API the entity graph is limited using a given view. Stores retrieved entity instances.