I have OData source, that implements $skip
and $top
parameters.
There are x number of entities that are returned. Say, I have only 250 entities. And then I try to do the paging like this:
https://example.com/EntitySet?$top=30&$skip=220
If my skip goes beyond the number of total entities, I eventually get timeout from service.
Is there a parameter or data, that would inform me that there are no more items? Is there something that can/should be implemented on OData side, that gets returned instead of timeout?