Kotlin: Column is less than or equal to a value

Finds all rows whose value on the stated column is less than or equal to the specified value.

Examples

With `select()`

supabase.postgrest["cities"].select(columns = Columns.list("name")) \{
   City::countryId lte 300
   //or
   lte("country_id", 300)
\}

With `update()`

val toUpdate = City(name = "Mordor")
supabase.postgrest["cities"].update(toUpdate) \{
   City::countryId lte 300
   //or
   lte("country_id", 300)
\}

With `delete()`

supabase.postgrest["cities"].delete \{
   City::countryId lte 300
   //or
   lte("country_id", 300)
\}

With `rpc()`

supabase.postgrest.rpc("echo_all_cities") \{
   City::countryId lte 250
   //or
   lte("country_id", 300)
\}