Is there any limit on number of terms for terms filter?
For example -
{
"filtered": {
"query": {
"match": { "ObjectType": "Invoice" }
},
"filter": {
"terms" : {
"InvoiceID" : ["Invoice_101_V1", " Invoice_102_V3", " Invoice_103_V3"]
}
}
}
}
}
I have added terms filter which lists the InvoiceID's. So is there any limit on adding terms in terms filter?
Thanks in advance.
Sameer