Ordering records

How to fetch ordered records

If a type supports sorting, it is possible to use the orderBy argument to order a query result set:

my_query(orderBy: value) {
  ...
}

It is also possible to combine filter and orderBy arguments:

my_query(filter: {...}, orderBy: value) {
  ...
}

Sortable types

Triggers

Matches

Last updated