Mongo $ sum $ cond有两个条件

时间:2019-07-07 17:49:21

标签: javascript mongodb mongoose mongodb-query aggregation-framework

我有一个聚合查询,该查询返回给定位置提交的评论总数/总数(而不是平均星级)。评价为1-5星。此特定查询将这些评论分为两类,“内部”和“谷歌”。

我有一个查询,返回的结果几乎是我要寻找的结果。但是,我需要为内部审核添加其他条件。我想确保内部评论的“星级”值存在/不为null,并且包含至少为1的值。所以,我在想添加类似的内容会起作用:

{ "stars": {$gte: 1} }

这是当前的聚合查询:

[
      {
        $match: { createdAt: { $gte: fromDate, $lte: toDate } }
      },
      {
        $lookup: {
          from: 'branches',
          localField: 'branch',
          foreignField: '_id',
          as: 'branch'
        }
      },
      { $unwind: '$branch' },
      {
        $match: { 'branch.org_id': branchId }
      },
      {
        $group: {
          _id: '$branch.name',
          google: {
            $sum: {
              $cond: [{ $eq: ['$source', 'Google'] }, 1, 0]
            }
          },
          internal: {            
            $sum: {
              $cond: [  { $eq: ['$internal', true]}, 1, 0 ],
            },
          }
        }
      }
]

截断的模式:

  {
    branchId: { type: String, required: true },
    branch: { type: Schema.Types.ObjectId, ref: 'branches' },
    wouldRecommend: { type: String, default: '' }, // RECOMMENDATION ONLY
    stars: { type: Number, default: 0 }, // IF 1 - 5 DOCUMENT IS A REVIEW
    comment: { type: String, default: '' },
    internal: { type: Boolean, default: true },
    source: { type: String, required: true },
  },
  { timestamps: true }

我需要确保在内部审核的总和中不计算“ wouldRecommend”建议。要确定某件商品是否为评论,它将获得1颗或更多星的星级。建议的星级值为0。

如何添加确保内部“ $ stars”值> = 1(大于或等于1)的条件?

使用Ashh的答案,我能够形成以下查询:

[
  {
    $lookup: {
      from: 'branches',
      localField: 'branch',
      foreignField: '_id',
      as: 'branch'
    }
  },
  { $unwind: '$branch' },
  {
    $match: {
      'branch.org_id': branchId
    }
  },
  {
    $group: {
      _id: '$branch.name',
      google: {
        $sum: {
          $cond: [{ $eq: ['$source', 'Google'] }, 1, 0]
        }
      },
      internal: {
        $sum: {
          $cond: [
            {
              $and: [{ $gte: ['$stars', 1] }, { $eq: ['$internal', true] }]
            },
            1,
            0
          ]
        }
      }
    }
  }
];

1 个答案:

答案 0 :(得分:2)

您可以将$and$cond运算符一起使用

{ "$group": {
  "_id": "$branch.name",
  "google": { "$sum": { "$cond": [{ "$eq": ["$source", "Google"] }, 1, 0] }},
  "internal": { "$sum": { "$cond": [{ "$eq": ["$internal", true] }, 1, 0 ] }},
  "rating": {            
    "$sum": {
      "$cond": [
        {
          "$and": [
            { "$gte": ["$stars", 1] },
            { "$eq": ["$internal", true] }
          ]
        },
        1,
        0
      ],
    }
  }
}}