Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は以下の形式のスキーマを持っています:
var ServiceSchema = new Schema({ createdAt:Date,name:String,ExpiryDate:Date});
createdAtとexpiryDateを比較してデータベースにクエリを実行し、結果を取得する必要があります。
ここで値を照会する必要があるとしますcreatedDate>ExpiryDate。
createdDate>ExpiryDate
マングースを使用してクエリを作成する方法についてのアイデアは、本当に役に立ちます。
次のコードスニペットが機能するはずです。
ServiceSchema.find( {$where: 'this.createdDate > this.ExpiryDate'}, function(err, results) { /// });