Stále můžete použít aggregate()
zde s MongoDB 3.2, ale pouze pomocí $redact
místo toho:
db.boards.aggregate([
{ "$redact": {
"$cond": {
"if": {
"$and": [
{ "$ne": [ "$createdBy._id", "$owner._id" ] },
{ "$setIsSubset": [["$createdBy._id"], "$acl.profile._id"] }
]
},
"then": "$$KEEP",
"else": "$$PRUNE"
}
}}
])
Nebo pomocí $where
pro prostředí MongoDB 3.2 si stačí ponechat omezenou kopii this
a vaše syntaxe byla trochu mimo:
db.boards.find({
"$where": function() {
var self = this;
return (this.createdBy._id != this.owner._id)
&& this.acl.some(function(e) {
return e.profile._id === self.createdBy._id
})
}
})
Nebo v prostředí kompatibilním s ES6:
db.boards.find({
"$where": function() {
return (this.createdBy._id != this.owner._id)
&& this.acl.some(e => e.profile._id === this.createdBy._id)
}
})
Agregát je nejvýkonnější z těchto dvou možností a měl by být vždy vhodnější než použití hodnocení JavaScript
A za co stojí, novější syntaxe s $expr
by bylo:
db.boards.find({
"$expr": {
"$and": [
{ "$ne": [ "$createdBy._id", "$owner._id" ] },
{ "$in": [ "$createdBy._id", "$acl.profile._id"] }
]
}
})
Pomocí $in
přednostně před $setIsSubset
kde je syntaxe trochu kratší.
return (this.createdBy._id.valueOf() != this.owner._id.valueOf())
&& this.acl.some(e => e.profile._id.valueOf() === this.createdBy._id.valueOf())