Hi,
i have a search which would result in roughly 450,000 results. So, i thought i could just paginate through the search(results) via using the top and skip parameters. but that does not work.
The issue i get is:
Result is maxed at 10000 while the total is 453761 rows.
Requested - 100, skipped - 9900 rows.
the code i use
search = rd.discovery.search(
view = rd.discovery.Views.INDICATOR_QUOTES,
top = 100,
skip = 9900,
filter = "( SearchAllCategoryv2 eq 'Economic Indicators')",
select = "RIC, RCSCountryOfIndicatorLeaf,CommonName, Periodicity, StartDate, EndDate, ObservationDate, PreviousReleaseDate, NextRelease")
when i try to skip 10,000, i get this error:
RDError: Error code 400 | Invalid result window: (top + skip) must not exceed 10,000
so, how do i get the other 443,761 rows?
thanks
Andreas