Have I found a documentation error about auto_generate_phrase_queries in query stings?

When following the documentation about query_sting and auto_generate_phrase_queries,
Query string query | Elasticsearch Guide [8.11] | Elastic, is suggest that elastic 7.5 does indeed support auto_generate_phrase_queries, but when I try, I get this error

{
"error": {
"root_cause": [
{
"type": "parsing_exception",
"reason": "[query_string] query does not support [auto_generate_phrase_queries]",
"line": 10,
"col": 43
}
],
"type": "parsing_exception",
"reason": "[query_string] query does not support [auto_generate_phrase_queries]",
"line": 10,
"col": 43
},
"status": 400
}

I think it was the kibana auto-compleate that caused me trouble
When I typed out "auto_generate_synonyms_phrase_query" everything worked fine.

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