Find all repository items matching the filter parameters.
Promise with the entities that match the filter.
Filter parameters. Use FilterInterface to create them.
Gets all repository items. The cached data will be returned if the data has been fetched before. Using the forceFetch parameter, a user can order a fresh copy to be fetched from the server.
Promise with the repository items.
Optional
forceFetch: booleanWhether to bypass the cache and retrieve a fresh copy from the server.
Get one repository item by id. The cached data will be returned if the data has been fetched before. Use the forceFetch parameter to retrieve a fresh copy from the server. In case a new record is fetched, the data and dataMap will be updated accordingly.
Identifier of the repository item
Optional
forceFetch: booleanWhether to bypass the cache and retrieve a fresh copy from the server.
Generated using TypeDoc
The RestRepository retreives resources from the database through the REST API.
A full list of resources can be fetched by calling findAll and a specific resource by calling findOne.