How can I filter documents that have a nested field which is an array and has more than N elements?
For example:
"oid": "oid:user:my_user",
"updated_at": "2015-09-09T08:27:58.121216",
"versions": [
{
properties version 1
},
{
properties version 2
}
]
}
How can I filter documents that have a field which is an empty array?
Is facets the solution? If so, how?