У меня есть следующий документ:
{
"_index": "testrest",
"_type": "testrest",
"_id": "sadfasdfw1",
"_score": 1,
"_source": {,
"s_item_name": "Create",
"request_id": "35",
"Result": "Match",
}
},
Я пытаюсь получить записи с полем term
значение Match
в Result
и request_id
из 35
.
Вот мой запрос:
{
"query": {
"bool": {
"must": [
{ "term": { "Result": "Match" }}
],
"filter": {
"term": {
"request_id": "35"
}
}
}
}
}
Но я получаю 0
результаты.
Замена term
на match
дает мне результаты.