Mutually exclusive to a range
Only relevant for range columns. Match only rows where column
is
mutually exclusive to range
and there can be no element between the two
ranges.
Parameters
- columnREQUIREDstring
The range column to filter on
- rangeREQUIREDstring
The range to filter with
const { data, error } = await supabase
.from('reservations')
.select()
.rangeAdjacent('during', '[2000-01-01 12:00, 2000-01-01 13:00)')