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