Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upPagination #578
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.