If i have a field that is NGRAM tokenized and i do a query_string query does the search RANK the full word match over partial matches?
Example:
i search "test"
and i get the following docs:
my test document
my testing document
my tested document
test is matched to all 3 but will the first "my test document" be RANKED (scored) higher than the others since its a full word match?
Thanks,