Finds all rows whose value on the stated column
is greater than or equal to the specified value
.
The column to filter on.
The value to filter with.
supabase.from("cities").select(columns = Columns.list("name")) \{
filter \{
City::countryId gte 300
//or
gte("country_id", 300)
\}
\}
val toUpdate = City(name = "Mordor")
supabase.from("cities").update(toUpdate) \{
filter \{
City::countryId gte 300
//or
gte("country_id", 300)
\}
\}
supabase.from("cities").delete \{
filter \{
City::countryId gte 300
//or
gte("country_id", 300)
\}
\}
supabase.postgrest.rpc("echo_all_cities") \{
filter \{
City::countryId gte 300
//or
gte("country_id", 300)
\}
\}