OrderDirection
The directions in which a list of items can be ordered when providing an orderBy argument.
enum OrderDirection {
  ASC
  DESC
}
Values
OrderDirection.ASC
Sort by ascending order.
OrderDirection.DESC
Sort by descending order.