Kotlin: Column is equal to a value

Finds all rows whose value on the stated column exactly matches the specified value.

Examples

With `select()`

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

With `update()`

val toUpdate = City(name = "Mordor")
supabase.postgrest["cities"].update(toUpdate) \{
    City::name eq "San Francisco"
    //or
    eq("name", "San Francisco")
\}

With `delete()`

supabase.postgrest["cities"].delete \{
    City::name eq "Mordor"
    //or
    eq("name", "Mordor")
\}

With `rpc()`

supabase.postgrest.rpc("function") \{
    City::name eq "Mordor"
    //or
    eq("name", "Mordor")
\}