Bulksearch with multiple terms and multiple values

Hi,
Currently, we are using the below JSON for search in the repository index. Here we are using one term with multiple values(list of values). Can we change the JSON to search using multiple terms by passing multiple values?

search_param = {

        "size": 10000,

        "query": {

            "terms": {

                "Chr": list(query_values) 

            }

        }

    }
es.search(index="repository", body=search_param)

regards,
Gopi

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.