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
When fetching the SimpleApi value collection, the response doesn't set a Link relation for the last page of the collection.
GET https://localhost:5001/api/values?offset=10&limit=10
Link: <https://localhost:5001/api/values?offset=0&limit=10>; rel="start",<https://localhost:5001/api/values?offset=0&limit=10>; rel="previous",<https://localhost:5001/api/values?offset=20&limit=10>; rel="next"
Link: <https://localhost:5001/api/values?offset=0&limit=10>; rel="start",<https://localhost:5001/api/values?offset=0&limit=10>; rel="previous",<https://localhost:5001/api/values?offset=20&limit=10>; rel="next",<https://localhost:5001/api/values?offset=90&limit=10>; rel="last"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature request
Description
When fetching the SimpleApi value collection, the response doesn't set a Link relation for the last page of the collection.
Example
Request
GET https://localhost:5001/api/values?offset=10&limit=10
Actual response Link header
Link: <https://localhost:5001/api/values?offset=0&limit=10>; rel="start",<https://localhost:5001/api/values?offset=0&limit=10>; rel="previous",<https://localhost:5001/api/values?offset=20&limit=10>; rel="next"
Expected response Link header
Link: <https://localhost:5001/api/values?offset=0&limit=10>; rel="start",<https://localhost:5001/api/values?offset=0&limit=10>; rel="previous",<https://localhost:5001/api/values?offset=20&limit=10>; rel="next",<https://localhost:5001/api/values?offset=90&limit=10>; rel="last"
The text was updated successfully, but these errors were encountered: