Database
Greater than a range
Match rows whose range column is strictly to the right of the supplied range.
Filter rows where column >> [start, finish) — the column's range begins strictly after the supplied range ends. PostgREST operator: sr (strictly right).
Signature
builder.range_gt(column, range)Parameters
| Name | Type | Required | Description |
|---|---|---|---|
column | String / Symbol | Required | A range-typed column. |
range | Array (length 2) | Required | Two-element array [lower, upper]. Wrapped as (lower,upper) on the wire. |
Returns
Returns
self (FilterRequestBuilder)
The same builder for chaining.
Example — bookings starting after Q2
supabase
.from("bookings")
.select("*")
.range_gt("during", ["2026-04-01", "2026-07-01"])
.execute