Mongo聚合查询的春季数据实现

时间:2018-12-28 10:04:30

标签: mongodb spring-data aggregation-framework aggregation

我需要以下提到的mongo db聚合查询的Spring-data实现。

db.myCollection.aggregate
(
  [
   {
     $project :
         {    _id : 0,
              myId : 1,
              myCount :
                     {$cond : {if : {$isArray : "$myOffers"},
                               then : {$size : "$myOffers"}'
                               else : "NA"
                              }
                      }
         }
   }
  ]
)

我必须根据myId对记录进行分组,然后在每个组中对myOffers进行计数。

0 个答案:

没有答案