| 12345678910111213141516171819202122232425262728293031323334 | [[query-dsl-and-query]]=== And Querydeprecated[2.0.0-beta1, Use the `bool` query instead]A query that matches documents using the `AND` boolean operator on otherqueries.[source,js]--------------------------------------------------{    "filtered" : {        "query" : {            "term" : { "name.first" : "shay" }        },        "filter" : {            "and" : [                {                    "range" : {                         "postDate" : {                             "from" : "2010-03-01",                            "to" : "2010-04-01"                        }                    }                },                {                    "prefix" : { "name.second" : "ba" }                }            ]        }    }}--------------------------------------------------
 |