INPUT_OBJECT
SortOrder
Sort order defines the sorting behavior of the results
link GraphQL Schema definition
- input SortOrder {
- # Column name, only columns of following types are allowed.
- #
- # Allowed column types:
- # string: sorts alphabetically
- # number: sorts by value
- # boolean: trues and falses grouped
- # date: sorts by date
- : String!
- # Sort direction
- : OrderDirection
- }