With a common element
Only relevant for array and range columns. Match only rows where
column
and value
have an element in common.
Parameters
- columnREQUIREDstring
The array or range column to filter on
- valueREQUIREDobject
The array or range value to filter with
const { data, error } = await supabase
.from('issues')
.select('title')
.overlaps('tags', ['is:closed', 'severity:high'])