What are the possible options for a phrase query to include wildcards using query_string ?
Without the wildcard below query returns some result. However, adding wildcard in any part of the query will no longer work.
I have seen similar questions on this but no working solution.
{
"query_string":{
"query":"message:\"My Resume*\"",
"default_field":"subject",
"default_operator":"or",
"auto_generate_phrase_queries":false,
"allow_leading_wildcard":false,
"enable_position_increment":true,
"analyze_wildcard":true,
"split_on_whitespace":true,
}
}
I was expecting following results to match for above query.
My Resume 2017
My Resume 2013
My Resume
What are my other options?