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