如何编写以下MongoDB查询

时间:2018-08-28 20:29:18

标签: mongodb nosql aggregation-framework

假设我有以下foobar集合:

{
  "foobar": [
    {
      "_id": "abc",
      "history": [
        {
          "type": "foo",
          "timestamp": 123456789.0
        },
        {
          "type": "bar",
          "timestamp": 123456789.0
        }
      ]
    },
    {
      "_id": "dfg",
      "history": [
        {
          "type": "baz",
          "timestamp": 123456789.0
        },
        {
          "type": "bar",
          "timestamp": 123456789.0
        }
      ]
    },
    {
      "_id": "hij",
      "history": [
        {
          "type": "foo",
          "timestamp": 123456789.0
        },
        {
          "type": "bar",
          "timestamp": 123456789.0
        },
        {
          "type": "foo",
          "timestamp": 123456789.0
        }
      ]
    }
  ]
}

如何基于$gte项目中的$lte属性查询(foobar / timestamphistory个项目,但使用{{ 1}}从timestamp吗?

如果没有type: "foo"等于type的子文档,则将整个文档过滤掉,如果有多个foo等于type的子文档,则它可以匹配任何人。

1 个答案:

答案 0 :(得分:1)

您可以尝试以下汇总:

var threshold = 123456788;
db.foobar.aggregate([
    {
        $addFields: {
            foobar: {
                $filter: {
                    input: "$foobar",
                    as: "doc",
                    cond: {
                        $let: {
                            vars: { 
                                foo: {
                                    $arrayElemAt: [
                                        {
                                            $filter: {
                                                input: "$$doc.history",
                                                as: "history",
                                                cond: {
                                                    $eq: [ "$$history.type", "foo" ]
                                                }
                                            }
                                        },
                                        0]
                                }
                            },
                            in: {
                                $gt: [ "$$foo.timestamp", threshold ]
                            }
                        }
                    }
                }
            }
        }
    }
])

$addFields可用于覆盖现有字段(foobar)。要筛选出不符合您条件的所有子文档,可以使用$filter(外部的子文档)。对于每个foobar文档,您可以使用$let定义临时变量foo。您需要内部$filter来获取所有history元素,其中typefoo,然后需要$arrayElemAt来获取第一个元素。然后,您只需要$gt$lt来进行比较。

对于没有foo的那些子文档,将返回undefined,然后在$gt阶段将其过滤掉。