Swift: Column is not in an array

Match only rows where column is not included in the values array. The negation of in().

Examples

With `select()`

try await supabase
  .from("cities")
  .select("name, country_id")
  .notIn("name", values: ["Rio de Janeiro", "San Francisco"])