All Products
Search
Document Center

Tablestore:Direction

Last Updated:Jul 10, 2024

Direction specifies the data query order in the GetRange operation.

Enumeration values

  • FORWARD: The query proceeds in ascending order of primary key values.

  • BACKWARD: The query proceeds in descending order of primary key values.

enum Direction {
    FORWARD = 0;
    BACKWARD = 1;
}

Related operations

GetRange