Match All Query - gnuhub/elasticsearch GitHub Wiki
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 }
}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 }
}