Hello, I'm using ElasticSearch, and my query is not looking for the information I want.
{
"query":
{
"bool":
{
"must":
[
{
"range":
{
"date":
{
"gte": "2016-04-29 00:00:01",
"lte": "now"
}
}
}
]
}
}
}
I've tried some variations, like putting:
"lte": "2016-04-29 23:59:59"
But it does not help, the result is all possible dates, basically it's as if this query did not even exist. Can anyone help me?