We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@Query(sort)
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
Using a query such as
@Query(value = "{country: 'USA'}", sort = "{lastName: -1, firstName: -1}") Window<Person> findBy(Limit limit, ScrollPosition scrollPosition);
does not apply the default sort for keyset pagination because the decorated query proxy doesn't handle the isSorted method used by ScrollUtils.
isSorted
ScrollUtils
The text was updated successfully, but these errors were encountered:
Handle Query.isSorted in QueryUtils proxy.
c7d2d54
Closes #4758
Polishing.
944fe2f
Reformat code. See #4758
Query.isSorted
QueryUtils
de9454b
Closes #4758 Original pull request: #4759
c4fd7b8
Reformat code. See #4758 Original pull request: #4759
369a70d
a98eaac
mp911de
Successfully merging a pull request may close this issue.
Using a query such as
does not apply the default sort for keyset pagination because the decorated query proxy doesn't handle the
isSorted
method used byScrollUtils
.The text was updated successfully, but these errors were encountered: