rangeGte method

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

Finds all rows whose range value on the stated column does not extend to the left of the specified range.

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

Implementation

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