sort method

void sort(
  1. Iterable<String> sort
)

Sets sorting parameters. See https://jsonapi.org/format/#fetching-sorting

Implementation

void sort(Iterable<String> sort) {
  query.addAll(Sort(sort).asQueryParameters);
}