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