我有一个Mongo查询,该查询正在从集合中提取子教育并计划其字段。 该查询工作正常,但无法将其放入Jaspersoft MongoDB Query中,这对于获取数据集是必不可少的! 我浏览了https://community.jaspersoft.com/wiki/jaspersoft-mongodb-query-language,但没有成功。 有人能够将这条语句转换为碧玉报告的有效查询吗?
**db.getCollection('a').aggregate({
$unwind: "$b"
}, {
$project: {
attribute: "$b.attribute"
}
})**
Any help would be highly appreciated!