I've read Elastic Search documentation but I can not understand how this query works. I just want to know how is the combination of query and filter and another filter.
{
"query": {
"filtered": {
"query": {
"match": { "tweet": "full text search" }
},
"filter": {
"range": { "created": { "gte": "now - 1d / d" }}
}
}
}
}
Is it possible to explain it to me a bit simpler that this page? http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-filtered-query.html