Hi,
I want query data form elasticsearch based on some value of the string, i wrote following query for that.
GET _search
{
"query": {
"bool": {
"filter":{
"bool":{
"should": [
{
"query_string": {
"default_field": "log_mesage",
"query": "UE CTX REL-RLF",
"default_operator": "AND"
}
},
{
"query_string": {
"default_field": "log_message",
"query": "uecc_s1ap_build_and_send_enb_ue_ctx_release_req AND S_TMSI.MMEC"
}
}
], "minimum_should_match": 1
}
}
}
}
}
When i am running this query, i am only getting result for the 2nd query i.e "query": "uecc_s1ap_build_and_send_enb_ue_ctx_release_req AND S_TMSI.MMEC" .