rangeLte method

PostgrestFilterBuilder<T> 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.

await supabase
    .from('users')
    .select()
    .rangeLte('age_range', '[2,25)');

Implementation

PostgrestFilterBuilder<T> rangeLte(String column, String range) {
  return copyWithUrl(appendSearchParams(column, 'nxr.$range'));
}