0
nodejsからmongooseドライバ経由でdocumentdbにアクセスしています。私はすべてがうまく動作他のフィールドにアクセスする場合findメソッドが日付では機能しません
{ [MongoError: cursor does not exist, was killed or timed out]
name: 'MongoError',
message: 'cursor does not exist, was killed or timed out' }
-
db.recordingModel.find(
{
dateRecorded :
{
"$gte": new Date("2015-10-01T00:00:00.000Z")
}
// status:"sync_error"
}, function(err, results) {
console.log(results);
console.log(err);
});
は、私は次のエラーを得ました。このクエリで何が問題になっていますか?ありがとう。
回避策
私は、日付フィールドは、複雑な構造を有している紺碧のポータルから気づいたので、私は私のクエリを更新します。
"dateRecorded.$date" :
{
"$gte": 1491956026000
}