gte method

PostgrestFilterBuilder gte(
  1. String column,
  2. dynamic value
)

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

postgrest.from('messages').select().gte('id', 1)

Implementation

PostgrestFilterBuilder gte(String column, dynamic value) {
  appendSearchParams(column, 'gte.$value');
  return this;
}