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
It is already possible to set the Sort.Direction from a GET query: &sort=name,desc
Sort.Direction
&sort=name,desc
https://docs.spring.io/spring-data/rest/docs/current/reference/html/#paging-and-sorting.sorting curl -v "http://localhost:8080/people/search/nameStartsWith?name=K&sort=name,desc"
curl -v "http://localhost:8080/people/search/nameStartsWith?name=K&sort=name,desc"
It would be nice if one could as well set the Sort.NullHandling, like: &sort=name,desc+nullsFirst or similar.
Sort.NullHandling
&sort=name,desc+nullsFirst
The text was updated successfully, but these errors were encountered:
Duplicates #1409
Sorry, something went wrong.
odrotbohm
No branches or pull requests
It is already possible to set the
Sort.Direction
from a GET query:&sort=name,desc
https://docs.spring.io/spring-data/rest/docs/current/reference/html/#paging-and-sorting.sorting
curl -v "http://localhost:8080/people/search/nameStartsWith?name=K&sort=name,desc"
It would be nice if one could as well set the
Sort.NullHandling
, like:&sort=name,desc+nullsFirst
or similar.The text was updated successfully, but these errors were encountered: