0

使用管道和 curl 获取语句,通常都很好,除非它是时间戳字段。我已经看到了如何在 Learning Locker 上按时间戳查询的示例,但它对我不起作用。

$pipeline = '[
        {"$project": {"statement": 1}},
        {"$match": {"$and":
                [
                    {"timestamp" : {"$gte": {"$dte": "2019-01-01T00:00:00.000Z"}}}
                ]}
        }
    ]';

需要获取时间戳为 $gte 2019.01.01 的所有语句(稍后将从 2019-01-01 到 2019-08-01

在获取时,它将显示为字符串“timestamp”=>“2019-02-06T11:20:34+02:00”

4

0 回答 0