Fields
-
done :boolean
-
Indicates whether there are more items which can be fetched.
If this is true, fetching the next block will likely return an empty array as the result. A DataProvider can potentially make a stronger guarantee (if the DataProvider is running against an immutable repository or the DataProvider doesn’t attempt to retrieve a subsequent block if the DataProvider believes it is complete). We don’t generally make the stronger guarantee since the repository may have been mutated since the previous response with done:true, such that new records would be returned.
If this is false, fetching the next block may or may not return an empty array as a result.
- Since:
- 4.1.0
-
fetchParameters :FetchByOffsetParameters.<D>
-
The parameters used for the fetch call.
- Since:
- 4.1.0
-
results :Array.<Item.<K, D>>
-
Array of Item.
- Since:
- 4.1.0