Column is less than or equal to a value
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.lte('country_id', 250)
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.lte('country_id', 250)