Kotlin: Don't match the filter

Finds all rows that don't satisfy the filter.

Parameters

Examples

With `select()`

supabase.from("countries").select \{
    filter \{
        filterNot("name", FilterOperation.IS, "")
    \}
\}