Finds all rows whose value on the stated column
doesn't match the specified value
.
supabase.postgrest["cities"].select(columns = Columns.list("name", "country_id")) {
City::name neq "The Shire"
//or
neq("name", "The Shire")
}
val toUpdate = City(name = "Mordor")
supabase.postgrest["cities"].update(toUpdate) {
City::name neq "The Shire"
//or
neq("name", "The Shire")
}
supabase.postgrest["cities"].delete {
City::name neq "The Shire"
//or
neq("name", "The Shire")
}
supabase.rpc("echo_all_cities") {
neq("address->postcode", 90210)
}