getList
Gets a list from the store.
Syntax
store.getList(filters);
Parameters
Name | Type | Description |
---|---|---|
filters | StorageFilters | Filters to apply to the list. |
Returns
Promise<StorageResult>
- A promise that resolves to the list.
Example
const result = await store.getList({
sort: 'desc',
order: 'created_at',
});
console.log('Result:', result);
Available on: Client Server