Column is greater than a value
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.gt('country_id', 250)
const { data, error } = await supabase
.from('cities')
.select('name, country_id')
.gt('country_id', 250)