Kotlin: With a common element

Only relevant for array and range columns. Match only rows where column and value have an element in common.

Examples

On array columns

supabase.postgrest["issues"].select(columns = Columns.list("title")) \{
   Issue::tags overlaps listOf("is:closed", "severity:high")
   //or
   overlaps("tags", listOf("is:closed", "severity:high"))
\}

On range columns

supabase.postgrest["issues"].select(columns = Columns.list("title")) \{
   Issue::tags overlaps listOf("is:closed", "severity:high")
   //or
   overlaps("tags", listOf("is:closed", "severity:high"))
\}