Match only rows where column is greater than value.
column
value
The column to filter on
The value to filter with
const \{ data, error \} = await supabase .from('countries') .select() .gt('id', 2)