Hi, I'm trying to fetch all the existing work logs through your API
worklogs = TrackerClient().worklog.find()
for worklog in worklogs:
print(worklog.id)
this code works fine until I'm exceeding the 10000th work log, then API throws a 400 error which says: Request exceeds 10000 items limit
How do I get ALL the existing work logs if there's more than 10000 of them?