这是我聚合的预测阶段:
Document filter = new Document(
"$filter", new Document(
"input", "$joins").append("as", "join").append(
"cond", "{$eq: [\'$$join.exited\', false]}"));
list.add(project(new Document("_id", 0).append("joins", filter).append("userName", 1)
.append("chatID", 1).append("warned", 1)));
但它返回joins
中exited
设置为true
(以及false
)的元素。
你能告诉我我的错误是什么吗?
(我应该提到list
是聚合阶段的ArrayList
)
编辑。这是我期待的一份文件:
{
userName: "test",
//other fields than joins
joins:
[
{
remaining: 4
userID: 1245
exited: false
},
{
remaining: 3
userID: 2312
exited: false
}
]
}
我希望exited
始终是假的。
答案 0 :(得分:1)
您必须解析文档值,因为它被解释为文字字符串值。
更新
"cond", "{$eq: [\'$$join.exited\', false]}")
到
"cond", Document.parse("{$eq: [\'$$join.exited\', false]}")
或
"cond", new Document("$eq", Arrays.<Object>asList("$$join.exited", false))
两种变体都应该有效。