Swift: With a common element

Match only rows where column and value have an element in common.

Examples

With `select()`

try await supabase
  .from("cities")
  .select("name, main_exports")
  .overlaps("main_exports", value: ["exports", "tourism"])