You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kobotoolbox uses a fairly simple pagination right now. Basically getSubmissions() will always download everything, and the http helpers don't paginate at all.
What we want to support is:
Add limit, pageSize and start options to any APIs that support pagination.
Paginating APIs should download data until the limit is reached. If no limit, all data will be downloaded (I think this is fine for default behaviour BUT we should warn about it)
I think only getSubmissions() and http.get() actually need to support this level of pagination
The text was updated successfully, but these errors were encountered:
kobotoolbox uses a fairly simple pagination right now. Basically
getSubmissions()
will always download everything, and thehttp
helpers don't paginate at all.What we want to support is:
limit
,pageSize
andstart
options to any APIs that support pagination.limit
is reached. If no limit, all data will be downloaded (I think this is fine for default behaviour BUT we should warn about it)getSubmissions()
andhttp.get()
actually need to support this level of paginationThe text was updated successfully, but these errors were encountered: