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.
The column to filter on.
The values to filter with.
supabase.from("reservations").select \{
filter \{
Reservation::during adjacent ("2000-01-02 08:30" to "2000-01-02 09:30")
//or
adjacent("during", "2000-01-02 08:30" to "2000-01-02 09:30")
\}
\}