Finds all rows whose value on the stated column is not found on the specified values. The negation of in_().
The column to filter on.
The values to exclude.
supabase.from("cities").select(columns = Columns.list("name")) {
filter {
City::name notIn listOf("Hobbiton", "Edoras")
//or
notIn("name", listOf("Hobbiton", "Edoras"))
}
}