I have a field which has multiple strings, how do I write a search query for that with the RESTHightLevelCient. Also, the search string i give is just a partial string.
Adding a little more detail.
I am trying to implement something where I have multiple columns, but just one search string. My search string can be a combination of different columns; also my search should work when the string is just the combination of partial words from different columns.
I am trying a solution to get this working, by having a single column which is a space-separated join of all the other searchable columns in the order they can appear in the search.
So if I have 4 columns, Bookname, Author, Price, and Publication and when I give the partial book name with the partial author. I want the matches to be returned in the order where the most relevant match are on the top.