Default sort direction on table groups

Is there a way to define the default sort direction on table groups?
// Exemple where it makes more sense to sort by descending order by default
Tables\Grouping\Group::make('priority')
    ->orderQueryUsing(function (Builder $query, string $direction) {
        $query->orderByRaw('FIELD(priority, "low", "medium", "high") ' . $direction);
    })
 

Also, is it possible to disable the ordering for some groups?
Was this page helpful?