How to search Text in Multi-valued field elementwise

I have a field:

"skills" : [
                  "smart worker",
                  "dedicated",
                  "english",
                  "bengali",
                  "dbms"
                ]

If I write a match query with "text": "dedicated worker", this doc appears in the results, but I want to search the field elementwise. Is there a better way to do it without using nested structure?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.