Let's say I have the following query string that the user enters - "dark blue shoes and water washable"
Basically I want to search for both "dark blue shoes" and "water washable" in product_description
OR product_title
field.
And also the same goes for "dark blue shoes or water washable", so instead of "and" operator, use a "or" operator.
Is it possible to provide multiple phrases to Elasticsearch with either "and/or" operator
I am using v7.1 if that matters.