Match All Queryedit

The most simple query, which matches all documents, giving them all a _score of 1.0.

{ "match_all": {} }

The _score can be changed with the boost parameter:

{ "match_all": { "boost" : 1.2 }}