Home

Greater than or equal to a range


final res = await supabase
  .from('countries')
  .select('name, id, population_range_millions')
  .rangeGte('population_range_millions', '[150, 250]')
  .execute();