Updated on 2022-08-08 GMT+08:00

Sort Syntax

The Sort syntax is in the JSON array format. Only the numeral type is supported. Repeated fields will be overwritten.

  • Example 1: Sorting of a single field
    "sort":[
              {
                  "location": "desc"
              }
    ]
  • Example 2: Sorting of multiple fields
    "sort": [
                {
                 "timestamp": "desc"
                 },
                 {
                    "rowkey": "asc"
                 }
    ]