We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
Hello.
Try to use filters for worklog searching.
Filter createdAt will help you to get disjoint results in several consecutive requests https://github.com/yandex/yandex_tracker_client/blob/master/yandex_tracker_client/collections.py#L1013
createdAt
All tracker clients are based on api. Full documentation see in https://cloud.yandex.com/en-ru/docs/tracker/concepts/issues/get-worklog
Sorry, something went wrong.
No branches or pull requests
Hi, I'm trying to fetch all the existing work logs through your API
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?
The text was updated successfully, but these errors were encountered: