-
Notifications
You must be signed in to change notification settings - Fork 26
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
I have multiple index some index doesn't have col_1 how to add "unmapped_type":"keyword" to my orderBy to avoid error
GET data_index_1,data_index_2/_search
{
"query": {
"bool": {
"must_not": [
{ "exists": { "field": "deleted_at" } }
],
"must": [
{
"multi_match": {
"query": "ali",
"type": "best_fields",
"fields": ["col_1"]
}
}
]
}
},
"size": 1000000,
"sort": [
{ "col_1.keyword": { "order": "asc", "unmapped_type":"keyword" } }
]
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request