Lets say I have a document indexed to ES with
content: "Tim Cook revealed during the earnings call that iPhone sales in India grew by 56% on a yearly basis, despite the company's first global sales decline in 13 years."
Now if a user searches for a word using a match query
{
"query": {
"match": {
"answer": {
"query": "decline"
}
}
}}
say i get a score of 0.047.
But with the same query, if I search for the word "declining", I get a score of 0. I want to check if the word is partially present in the document or not. How can I do this?
Thanks in advance