lte method

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

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

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

Implementation

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