Hi!
I am wondering why I am seeing the following (Elasticsearch V 5.1)
I have the following query.
{
"multi_match" : {
"query" : "bli",
"type" : "phrase_prefix",
"fields" : [ "TITLE", "DESCR50", "NAMEFORMAL" ]
}
}
I am able to find a document that contains "NAMEFORMAL" = "Marcus Bliss" , but a document with a "DESCR50" = "Public Work" is not returned. I have confirmed that such document exists and it can be found through other criteria. When creating the index, I did not specify any properties for such fields... so I would assume the would behave similarly... Any help with this would me much appreciated. Thanks!