Pagination broken for Nuget packages #138378
Replies: 3 comments 1 reply
-
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
Noticed the same issue here. We have a bit over 100 packages, if I skip=0 and take 10, then skip 10 and take 10 the same 7 results are returned. Also tried take=100 and was getting 69 results, not seeing a pattern there. |
Beta Was this translation helpful? Give feedback.
-
We're also seeing rather odd behaviour. We have 91 packages in total, but the following command (which I would expect to always return 10 results) returns 8 results:
It then returns the same 8 results, no matter what the If I include the |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Bug
Body
It seems like the NuGet API of GitHub Packages ignores the pagination parameter
&take=10
in the request.Example request:
will return the exact same result as
This causes very irritating issues when
This is clearly a bug, because the standard NuGet from nuget.org works as expected:
returns the next 10 hits after
Beta Was this translation helpful? Give feedback.
All reactions