I have the following document structure:
{ "product": "x",
"category": [ {"name": "y1", "id": "z1"},
{"name": "y2", "id": "z2"}]
}
How can I group by only the first value of the array, for example "category[0]"? I have tried both "category.0" and "category[0]" and the returned result is only a single group with all documents in it.
Thanks