With the pagination, the API query in icurl() will query up to 100K object instances at a time. If there are more objects to be returned, it will automatically query again with the next page such as page=1, page=2 and so on, then it will concatenate all the result as a single list so that the output of icurl() remains the same regardless of the pagination or not.
This enhancement will fix issue #173 and any other failure due to massive amount of objects to be returned.
The current API query example made by
icurl()
:The new API query example with pagination:
With the pagination, the API query in
icurl()
will query up to 100K object instances at a time. If there are more objects to be returned, it will automatically query again with the next page such aspage=1
,page=2
and so on, then it will concatenate all the result as a single list so that the output oficurl()
remains the same regardless of the pagination or not.This enhancement will fix issue #173 and any other failure due to massive amount of objects to be returned.