Open
Description
I noticed the recent 7.10 release bringing support for case insensitivity to more parts of the DSL (61546 & 59441)
I require the ability to filter Terms Aggregation buckets in a case-insensitive way.
GET /_search
{
"aggs": {
"tags": {
"terms": {
"field": "tags",
"include": ".*sport.*",
"include_case_insensitive": true
}
}
}
}