You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
Match All Queryedit
A query that matches all documents. Maps to Lucene MatchAllDocsQuery.
{
"match_all" : { }
}Which can also have boost associated with it:
{
"match_all" : { "boost" : 1.2 }
}