final data = await supabase .from('countries') .select('name, id, population_range_millions') .rangeGt('population_range_millions', '[150, 250]');
final data = await supabase .from('countries') .update({ 'name': 'Mordor' }) .rangeGt('population_range_millions', '[150, 250]');
final data = await supabase .from('countries') .delete() .rangeGt('population_range_millions', '[150, 250]');
// Only valid if the Stored Procedure returns a table type. final data = await supabase .rpc('echo_all_countries') .rangeGt('population_range_millions', '[150, 250]');
navigate_before containedBy()
rangeGte() navigate_next