Dart Reference v2.0

Column is greater than a value

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

Parameters
    column
    REQUIRED
    String

    The column to filter on.

    value
    REQUIRED
    Object

    The value to filter with.


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