Kotlin: Column is greater than a value

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

Examples

With `select()`

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

With `update()`

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

With `delete()`

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

With `rpc()`

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