Orders the result with the specified column.
The column to order by.
Whether to order in ascending order. Default is `false`.
Whether to order nulls first. Default is `false`.
Specify the referenced table when ordering by a column in an embedded resource.
final data = await supabase
.from('countries')
.select('id, name')
.order('id', ascending: false);
final data = await supabase
.from('countries')
.select('''
name,
cities (
name
)
''')
.order('name', referencedTable: 'cities', ascending: false);