У меня есть массив объектов, который содержит поля даты в моем документе, я хочу сопоставить элементы объекта в массиве, используя фильтр, у меня есть запрос, подобный приведенному ниже
db.getCollection('test').aggregate([
{
$match: {
key: "test_key"
}
},
{
$project: {
testArray: {
$filter: {
input: '$testArray',
as: 'item',
cond: {
$or: [
{
$lt: [
"$$item.date1",
ISODate("2018-05-06 00:00:00.000Z")
]
},
{
$lt: [
"$$item.date2",
ISODate("2018-06-08 00:00:00.000Z")
]
}
]
}
}
}
}
}
])
Хорошо работает, если я использую оператор $or
в операторе $cond
, хотя на самом деле я хочу использовать $nor
вместо $or
, но запрос сообщает об ошибке ниже с $nor
Failed to execute script.
Error:
Assert: command failed: {
"ok" : 0,
"errmsg" : "Unrecognized expression '$nor'",
"code" : 168,
"codeName" : "InvalidPipelineOperator"
} : aggregate failed
_getErrorWithCode@src/mongo/shell/utils.js:25:13
doassert@src/mongo/shell/assert.js:16:14
assert.commandWorked@src/mongo/shell/assert.js:370:5
DBCollection.prototype.aggregate@src/mongo/shell/collection.js:1319:5
DBCollection.prototype.aggregate@:1:355
@(shell):1:1
Error: command failed: {
"ok" : 0,
"errmsg" : "Unrecognized expression '$nor'",
"code" : 168,
"codeName" : "InvalidPipelineOperator"
} : aggregate failed :
_getErrorWithCode@src/mongo/shell/utils.js:25:13
doassert@src/mongo/shell/assert.js:16:14
assert.commandWorked@src/mongo/shell/assert.js:370:5
DBCollection.prototype.aggregate@src/mongo/shell/collection.js:1319:5
DBCollection.prototype.aggregate@:1:355
@(shell):1:1
Существуют ли какие-либо ограничения на оператор, используемый в $cond
?