Search a keyword in a field value string

I need to check whether the given filed value string contain word call 'select'

Ex : field request return following result
www.abc.cc/posts/page?v=8%20select%20all.....

So I need the correct elasticsearch syntax to track result which are having word called 'select' in request field in the elasticsearch indexes.

I have tried following syntax, but it return an error

.....
"filtered": {
"query": {
"query_string": {
"default_field": "request",
"query": "select OR SELECT"
}
},

.....

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.