Supabase has this usage example: ``` const { data,...
# off-topic
d
Supabase has this usage example:
Copy code
const { data, error } = await supabase
  .from('countries')
  .select('name, id, population_range_millions')
  .rangeLt('population_range_millions', [150, 250])