as you can see, from query preview from my console above, I type "masjid istiqlal" as the query and there is 2 result documents appear (in fact, I only have 2 documents in my engine), the first document score is 32.44 and the second document score is 1.34, both documents also appears if I access it through Restful API.
the first document is exactly the document that I want, but unfortunately the second document is also appear on my query result. actually I only wanna show 1 document for query "masjid istiqlal". the second document appears because there is "masjid" in some fields in the document.
so to solve this issue, I want to implement match phrase, I mean, I want to show document that has exact match phrase "Masjid Istiqlal", not only "Masjid" or "Istiqlal". how to do that ?
or I assume that I can limit the score, I mean, only show the document that has score more than 2.5. something like that so I can prevent the second document to show if I perform search through Restful API. can I do that ?