rangeLte method

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

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

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

Implementation

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