Swift: Don't match the filter

Finds all rows that don't satisfy the filter.

Examples

With `select()`

try await supabase
  .from("countries")
  .select()
  .not("name", operator: .is, value: "")
  .execute()