Hi
Given that in my index there is a document with "LogType": "Terapy" and "LogDate": { "gte": "2015-01-01"}
why the following bool query doesn't return any document?
{
"query": {
"bool" : {
"must" : {
"term" : { "LogType" : "Terapy" }
},
"should": {
"range" : {
"LogDate" : { "gte" : "2015-01-01" }
}
}
}
}
}
Thanks