Example, I have this data
id | title | subtitle | country_id |
---|---|---|---|
1 | Cheapest iPhone in town | Lorem ipsum | 123 |
2 | iOS 13 beta released | Lorem ipsum | 25 |
3 | iPadOS public beta | Lorem ipsum | 123 |
I want to get the suggestion from country 123
POST _search
{
"suggest": {
"text": "iphame",
"0-title": {
"phrase": {
"field": "title"
}
}
},
"1-subtitle": {
"phrase": {
"field": "subtitle"
}
}
}
}
The query above will get the suggestion from all 3 rows. How can I only take country_id 123
?