Filters documents that have fields that match any of the provided terms (not analyzed). For example:
{
"constant_score" : {
"filter" : {
"terms" : { "user" : ["kimchy", "elasticsearch"]}
}
}
}
The terms filter is also aliased with in as the filter name for simpler usage.