Hi,
The ask is different from partial matches using n gram.
Suppose I have three documents with a field called file_content with type String (Default Full Text Search enabled)
First Document
{ _id: 1, file_content: "I love tennis and cricket"}
Second document:
{ _id: 2, file_content: "tennis and football are very popular"}
Third document:
{_id: 3, file_content" "football and cricket are originated in england"}
Now if I search with a list of words such as [tennis,cricket,football] is it possible to get following result:
[
{_id:1, includes; ["tennis", "cricket"]}
{_id:2, includes; ["tennis", "football"]}
{_id:1, includes; ["football", "cricket"]}
]
Thanks in advance,