rangeGt method

PostgrestFilterBuilder rangeGt(
  1. String column,
  2. String range
)

Finds all rows whose range value on the stated column is strictly to the right of the specified range.

postgrest.from('users').select().rangeGt('age_range', '[2,25)')

Implementation

PostgrestFilterBuilder rangeGt(String column, String range) {
  appendSearchParams(column, 'sr.$range');
  return this;
}