Contents
Introduction
When searching for items, you can sort the result set.
On this page:
Building sort expression
Sort expressions are defined as JSON. It's defined as a collection of sort specs, for example:
Sort Expression
[ { "Column":"Column1", "Direction":"ASC" }, { "Column":"Column2", "Direction":"DESC" } ]
- ASC - sort in ascending order - the default if no direction's specified
- DESC - sort in descending order.