Home

Order the results

Orders the result with the specified column.


final data = await supabase
  .from('cities')
  .select('name, country_id')
  .order('id', ascending: true);