MongoDB -用户模型(简化)
{
_id: "exampleid1",
name: "examplename1",
following: [
{
_id: "exampleid2",
name: "examplename2"
},
{
_id: "exampleid3",
name: "examplename3"
}
],
followers: [
{
_id: "exampleid4",
name: "examplename4"
},
{
_id: "exampleid5",
name: "examplename5"
}
]
}
嘿,我正在建立一个社交媒体平台,我需要从数据库中只获得我关注的用户。
我尝试了下面的查询,但没有任何结果:
User.find( { "followers": { _id: "exampleid1"} } )
1条答案
按热度按时间yjghlzjz1#
尝试将文档选择(
{_id: "exampleid1"}
)与投影({followers: 1, _id: 0}
)分开:了解它在playground example上的工作原理