rangeAdjacent method

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

Finds all rows whose range value on the stated column is adjacent to the specified range.

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

Implementation

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