lt method

PostgrestFilterBuilder<T> lt(
  1. String column,
  2. Object value
)

Finds all rows whose value on the stated column is less than the specified value.

await supabase
    .from('messages')
    .select()
    .lt('id', 2);

Implementation

PostgrestFilterBuilder<T> lt(String column, Object value) {
  return copyWithUrl(appendSearchParams(column, 'lt.$value'));
}