A check for exact equality (null, true, false), finds all rows whose value on the stated column
exactly match the specified value
.
is_
and in_
filter methods are suffixed with _
to avoid collisions with reserved keywords.
The column to filter on.
The value to filter with.
supabase.from("cities").select(columns = Columns.list("name")) \{
filter \{
City::name isExact null
//or
exact("name", null)
\}
\}
val toUpdate = City(name = "Mordor")
supabase.from("cities").update(toUpdate) \{
filter \{
City::name isExact null
//or
exact("name", null)
\}
\}
supabase.from("cities").delete \{
filter \{
City::name isExact null
//or
exact("name", null)
\}
\}
supabase.postgrest.rpc("echo_all_cities") \{
filter \{
City::name isExact null
//or
exact("name", null)
\}
\}