Person.find({ $expr: { $in: [ "$age", [15, 20, 12, 0] ] } })
EDIT:k porovnání polí potřebujete $setIntersection a $size operátory, zkuste:
Person.find({
$expr: {
$gt: [
{
$size: {
$setIntersection: [
[
"15",
"a",
"12",
"0"
],
"$age.x"
]
}
},
0
]
}
})