Only relevant for array and range columns. Match only rows where column and value have an element in common.
supabase.postgrest["issues"].select(columns = Columns.list("title")) \{
Issue::tags overlaps listOf("is:closed", "severity:high")
//or
overlaps("tags", listOf("is:closed", "severity:high"))
\}
supabase.postgrest["issues"].select(columns = Columns.list("title")) \{
Issue::tags overlaps listOf("is:closed", "severity:high")
//or
overlaps("tags", listOf("is:closed", "severity:high"))
\}