Wildcard queries return responses in ES 6.8.0, but not in ES 7.9.3,

{
"_source": [
"_id"
],
"query": {
"bool": {
"filter": {
"bool": {
"must": [
{
"query_string": {
"_name": "0",
"default_operator": "AND",
"lenient": true ,
"query": "/<field>.*/"
}
}
]
}
}
}
},
"size": 100,
"track_scores": true
}

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