WARNING: Version 1.7 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Match All Query
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Match All Query
editA query that matches all documents. Maps to Lucene MatchAllDocsQuery
.
{ "match_all" : { } }
Which can also have boost associated with it:
{ "match_all" : { "boost" : 1.2 } }