Flutter: Column is greater than a value

Finds all rows whose value on the stated column is greater than the specified value.

Parameters

Examples

With `select()`

final data = await supabase
  .from('countries')
  .select()
  .gt('id', 2);