I have a query as below using the query string dsl which I'm expecting to return results that match all the three assertions. (status = active, price = 100 , language = en).
How can I make the language
param optional, just score lower if is not matching instead to not match at all ?
(status:"active") AND (price:100) AND (language:"en")