次のような一般的なクエリを想定します。
SELECT * FROM items
ORDER BY type ASC, created DESC
Sorter
結果の順序付け用のクラスを構築するためのクエリ文字列の設計に関する規則はありますか?ソートキーの後に方向を追加するのはどうですか?
/items/list?sorts=typeASC,createdDESC // ORDER BY type ASC, created DESC
欠落しているものは次のASC
とおりです。
/items/list?sorts=type,createdDESC // ORDER BY type ASC, created DESC