我正在使用 laravel 5.1 并使用 jessenger mongodb 包。我正在使用原始查询来获取数据,但我很困惑如何使用日期,因为它目前返回空结果。
$resultSet = DB::connection('mongodb')->collection('wc_mycollection')->raw(function ($collection){
return $collection->aggregate([
[
'$match'=>[
'created_at'=>[
'$gte' => Previous day midnight,
'$lt' => Current Time
]
]
],
[
'$group' => [
'_id' => '$some_id',
]
]
]);
});
我应该怎么办?