Kotlin: Column is greater than or equal to a value

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

Examples

With `select()`

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

With `update()`

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

With `delete()`

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

With `rpc()`

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