the operator: or in item_pages query_param with groups of rules not taking affect

I had a query formatted as follows. Please focus on the filter added in the item_pages section and ignore the rest of the query.

query{
 boards(ids: 1234){
  items_page(query_params: {
    groups:{
      #rule 1
      rules: [{column_id: "test1", compare_value: ["test"], operator: any_of}, {column_id: "test2", compare_value: [test], operator: any_of}] # all the filter in AND by default
      #inner group 1
      groups:{
         #rule 2
        rules: [{column_id: "test3", compare_value: ["test"], operator: any_of}, {column_id: "test4", compare_value: [test], operator: any_of}] # all the filter in AND by default
      }
    }
    #outer operator - should apply OR to rule 1, rule 2
    operator: or
  }){
    items{
      id
      name
    }
  }
}
}

In the above case, the outer operator isn’t working. Could you please help me achieve the desired complex filter?

Essentially, this feature helps us retrieve items based on the timeline column for various timelines that we require.

Hello there @rselvaraj and welcome to the community!

Would you be able to please fill this form adding as much information as possible to it (such as what is the type of each of the columns you use, the actual value you look for, what you want to achieve and what you see instead) so that our team can take a look into it?