Finds all rows whose value on the stated column is greater than the specified value.
column
value
The column to filter on.
The value to filter with.
final data = await supabase .from('countries') .select() .gt('id', 2);