match phrase query will match full phrase.
match phrase prefix query will match phrase as prefix.
ex: "my_field": "confidence ab" will match
"confidence above" and "confidence about".
is there query for "match phrase any" like below example
ex: "my_field": "dence ab" should fetch below results.
"confidence above" and "confidence about"
Thanks