I have a set of documents like
{ tags:[\'a\',\'b\',\'c\'] // ... a bunch properties }
As stated in the title: Is there a way to fil
You should use Terms Query
{ "query" : { "terms" : { "tags" : ["c", "d"] } } }