Match query which matches exactly to a field with shuffling

Hi,
I have a field in Elasticsearch which has array of string. This field has standard analyzer.
e.g
Document 1
{ field:["a b c d", "a b c x", "b a c y"]}
Document 2
{ field:["a b c"]}

Now I am searching "b c a" using match query with 100% match.
I am getting both the documents which is correct.
But I want only Document 2.
How can I get only Document2 using match query?

Thanks

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