JavaScript: Column is greater than or equal to a value

Match only rows where column is greater than or equal to value.

Parameters

Examples

With `select()`

const \{ data, error \} = await supabase
  .from('countries')
  .select()
  .gte('id', 2)