My objective is to create an index + search pipeline, so I can find the following document by searching for "reprod":
{ name: "can you find this and reproduce?" }
What I have:
I'm using the default index. My search pipeline looks like this:
$search: {
text: {
query: 'reprod',
path: 'name',
},
},
But this does not work - I only get the full result when I provide the entire word in the query. I would like the document to be returned, even if I only provide a subset of a word.