我有两种文档类型category
和product
类别的结构如下:
{
"name": "Tables"
}
产品外观如下:
{
"sku": "bpp-5655",
"price": 555,
"categories": [
{
"id": 2,
},
{
"id": 3,
},
]
}
我需要获取每个类别的产品计数:
{
"name": "Tables"
"products-count": 35
}
有些类似ElasticSearch scripting,但子查询有另一种类型