I have a field in elasticsearch which is defined as an array with the following mapping:
"skills":{"type":"text","term_vector": "yes"}
It contains an array of multiple skills. Suppose i want to match multiple skills, and check which document contains the skills, how would i do that in a single function?
For example, suppose i need to search for skills such as "python", "ruby" and "C", instead of writing 3 match queries, is there any way it can be combined in 1 query, like the multi_match query which is used to match multiple fields?