PaginatedList <Data>
Index
Properties
count
Count of dataset entries returned in this set.
optionaldesc
Should the results be in descending order.
items
Dataset entries based on chosen format parameter.
limit
Maximum number of dataset entries requested.
offset
Position of the first returned entry in the dataset.
total
Total count of entries in the dataset.
A single page of items returned by DatasetBackend.getData.
Datasets paginate by offset, so a page is self-describing via
total/offset/limit: a frontend assembling all pages knows it has reached the end onceoffset + items.length >= total. The cursor-based counterpart for key-value stores is KeyValueStoreListKeysResult.