i want to search in my type..
and wrote all my queries, and work fine.. here i have a challenge!
i want to search in hole type... any field that exist, i wrote a query like this :
`
"query" => [
"bool" => [
"must" => [
"query_string" => [
"query" => $keyword_exact,
"boost" => 1
]
]
]
]
`
it works, but i want to get documents with the exact query...
for example: if i search sales... i want this exact word, not 'resalat' or 'Assaluyeh' or... because of having letters 'sal' .
this was my issue,
i hope it's clear for you
and thanks