我有一个这样的文档结构:
{
"_id" : ObjectId("...."),
"oneMoreId" : "....",
"items" : [
{
"itemId" : "...",
"type" : "Food",
}
]
}
当我在mongodb中运行JSON查询时:
db.inventory.aggregate([
{$match: { $and: [{"oneMoreId":"..."},{"items.type": "Food"}]}},
{"$project": {
"oneMoreId": 1,
"items": {
"$filter": {
"input": "$items",
"as": "item",
"cond": {
"$eq": ["$$item.type", "Food"]
}
}
}
}}
])
效果很好。
但是当我使用Spring Data的MongoTemplate进行聚合时,它会抛出
$ filter的输入必须是数组而不是对象
这是我的聚合查询(只是投影部分):
ProjectionOperation projection = project("oneMoreId").and(new AggregationExpression() {
@Override
public Document toDocument(AggregationOperationContext context) {
return new Document("$filter", new Document(
"input", "$items")
.append("as","item")
.append("cond", new Document("$eq", Arrays.asList("$$item.type","Food")))
);
}
}).as("items");
我在控制台中将其打印出来,查询与上面的JSON查询完全相同。精确。我什至尝试过纯Spring数据的查询:
ProjectionOperation projection = project("oneMoreId")
.and(filter("items")
.as("item")
.by(valueOf("item.type")
.equalToValue("Food"))).as("items");
同样,同样的错误(即使打印出来也会导致上面相同的JSON查询)。保存项目的java对象是一个List。我将其更改为数组Item [],但仍然无法正常工作。
任何帮助将不胜感激。
答案 0 :(得分:0)
没关系,
某人(我)错误地以对象而不是数组的形式放入了一个项。那弄乱了一切。刚刚删除了整个记录,一切正常。