你好,我是一个 mongoDB 菜鸟,我想检索一篇文章的评论列表:
{
id:0,
ref:0,
type: 'image',
date: null,
title: 'this is my title',
comments:[
{
user : 'myUser',
text : 'text'
},
{
user : 'myUser2',
text : 'text2'
}
}
如何仅查询帖子的评论数组?
我不想检索带有评论的帖子,而只想检索没有其他任何内容的评论?
这是我第一次尝试 jongo :
Post.posts().find("{ref : #}", ref).projection("{comments : 1}").as(Post.Comment.class)
这不起作用:/,我正在考虑将评论数组转换为评论类型。并使用投影仅检索评论部分...