Kotlin: Match at least one filter

Finds all rows satisfying at least one of the filters.

Examples

With `select()`

supabase.postgrest["countries"].select(columns = Columns.list("name")) \{
    or \{
        Country::id eq 2
        Country::name eq "Mordor"
        //or
        eq("id", 2)
        eq("name", "Mordor")
    \}
\}

Use `or` with `and`

supabase.postgrest["countries"].select(columns = Columns.list("name")) \{
    or \{
        Country::id gt 3
        and \{
           Country::id eq 1
           Country::name eq "Mordor"
        \}
    \}
\}