rangeLt method

PostgrestFilterBuilder<T> rangeLt(
  1. String column,
  2. String range
)

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

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

Implementation

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