I am trying to get records using the Query String Query .
My scenario for searching is as follows :
I have to search like : "I Love my " AND (HTC OR Iphone OR Samsung)
And I am expecting result like :
- I Love my HTC
- I Love my Iphone
- I Love my Samsung
I just tried some combinations but its not working
{
"query": {
"query_string": {
"default_field": "SearchContent",
"query": "\"I Love my\" AND (HTC OR Iphone OR Samsung)"
}
}
}
How can i do this with Query String Or is there any Other Option , i am stuck. Help me out.