Finds all rows that don't satisfy the filter.
.filterNot()
expects you to use the raw PostgREST syntax for the filter names and values.The column to filter on.
The operator to use for the filter.
The value to filter with.
supabase.from("countries").select \{
filter \{
filterNot("name", FilterOperation.IS, "")
\}
\}