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
Can you provide an example or look into the issue.
I expect api.jobcodes.all() to generate around four batches of fifty since my test data has around 200+ codes. However, it is stops at fifty no matter what.
for j in api.jobcodes.all():
#should loop 200+ times
#only ever loops fifty times.
The text was updated successfully, but these errors were encountered:
Either way I'm pretty sure your issue is linked to the way the base api works.
Under their docs you can get a max of 50 results per query. There is an option to request the next page, but I'm not sure if that part of this client is working.
There is a function called def _load_next_batch(self): in results.py file which might help you.
Can you provide an example or look into the issue.
I expect api.jobcodes.all() to generate around four batches of fifty since my test data has around 200+ codes. However, it is stops at fifty no matter what.
for j in api.jobcodes.all():
#should loop 200+ times
#only ever loops fifty times.
The text was updated successfully, but these errors were encountered: