List operations return one page and an opaque cursor. Pass the cursor as after
to get the next page.
Iterate every record
The iterator helpers live on the client, not on the resource modules. They
follow the cursor for you and stop when next_cursor is absent.
Query parameters are keyword arguments, the same as on the list operation.
These iterators walk the whole collection. Break out of the loop, or filter with
status, when you only need recent records.
Async iteration
AsyncReconify exposes the same three methods and returns async iterators.
Handle one page at a time
Call the list operation directly when you store the cursor between runs, for
example in a scheduled job.
Treat the cursor as opaque. Do not parse it, build it, or assume it stays valid
across contract versions.
Notes are not paginated
list_issue_notes returns every note on the issue in one response.
Next
Handle failures in Errors and retries.