Kotlin: Column is not in an array

Finds all rows whose value on the stated column is not found on the specified values. The negation of in_().

Parameters

Examples

With `select()`

supabase.from("cities").select(columns = Columns.list("name")) {
    filter {
       City::name notIn listOf("Hobbiton", "Edoras")
       //or
       notIn("name", listOf("Hobbiton", "Edoras"))
    }
}