-
Notifications
You must be signed in to change notification settings - Fork 759
New issue
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
Pagination #578
Comments
Documentation Features
Bugs
|
Some of these issues are likely outdated. |
Our goal will be to have a standardized paging methodology that all functions make use of. Part of the problem right now is that some functions use If we want to maintain backwards compatibility for our current 3.x.x release, I'm proposing that we default to If we have time, having async-based pagination would be really slick. |
There seem to be a lot of pagination-related issues. I'm happy to try to help get this sorted but I might need a bit of help/guidance because I don't know the codebase. |
Yes this is the primary issue with the library right now. The big thing we'd need is standardization. Every function call in our library that hits a GitHub endpoint that allows paging should allow for our users to pass through something like: {
per_page: 15,
page: 3
} In terms of guidance, I'll try to put together a PR with an example of the direction I'm thinking of going in. |
I'd like to add that |
This issue will track all pagination-related issues. Our goal is to support both loading everything, as well as passing a token through and managing paging yourself.
The text was updated successfully, but these errors were encountered: