我有以下查询
{
lessen: {
$not: {
$elemMatch: {
$and: [
{start: {$lt: new Date()}},
{eind: {$gt: new Date()}}
]
}
}
}
}
在我更新到 Meteor 0.8 之前,这非常有效。现在它抛出Error: Unrecognized operator: $and
. 有谁知道如何解决这一问题?