I would like Solr to return all results if a user query contains only stopwords, e.g. q=the, (by default Solr returns 0 results). Is there any flag in Solr config that I can switch on, or any Solr query syntax construction I can use to achieve this?
I really don't like the idea of duplicating stopword logic on the client side, and firing q=*:*
if all terms are stopwords.