所以我需要返回一个主题集合,每个主题都有一个“mostRecentThree”属性,其中包含 3 个最新帖子
我有 2 个收藏
话题
{name:'food', foo:bar}
邮政
{ topic:'food', created: someDate }
返回结果应该是设置了 recentThree 属性的集合
{name:food, recentThree: [postId1, postId2, postId3], foo:bar}
这样做最有效的方法是什么?