I want to find all documents in the index that have a certain field, regardless of the field\'s value. If at all possible using the query language, not the API.
Is t
Another solution is using a ConstantScoreQuery with a FieldValueFilter
new ConstantScoreQuery(new FieldValueFilter("field"))