我正在尝试构建以下内容:
我有类似 Pinterest 模型的东西,其中用户可以关注多个板,每个板都包含多个 Pin 图。现在,我需要构建类似于 Pinterest 主页的东西,其中会根据用户的关注操作出现许多新的 pin,按最新的在顶部排序。
换句话说,我需要类似下面的伪查询:
Select all the Pins whose Board is contained within currentUser.followedBoards and order by dateAdded Desc and select the first 20;
我对“包含在”部分有一点问题