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