Sorting
doyto.query.config:
sort-fields-map:
win.doyto.query.test.TestQuery:
- id
- username
- userLevelQuery String
ORDER BY clause
Memo
Last updated
doyto.query.config:
sort-fields-map:
win.doyto.query.test.TestQuery:
- id
- username
- userLevel?sort=id,desc
ORDER BY id DESC
?sort.id=asc&sort=id,desc
ORDER BY id ASC
sort will be ignored since sort.id is passed
?sort.username=asc&sort.userLevel=desc
ORDER BY username ASC, user_level DESC
Last updated