Match field which contained in the query

I need to find all docs where field with phrase contained in the query phrase.
Elastic version 1.x
For example:
"query": {
???????
{
"title": "Java senior development"
}
}
}
Should match docs that their field "title" contained in "Java senior development"
possible matchs: Java, Java senior, development
Not matching: Java senior development bla bla , Java development.

Is there a query or mapping for this?
Thanks

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