Match only rows where column is not included in the values array. The negation of in().
column
values
in()
try await supabase .from("cities") .select("name, country_id") .notIn("name", values: ["Rio de Janeiro", "San Francisco"])