我的博客应用程序有一个Post
模型,它有很多Comment
s。
schema "post" do
field :title, :string
field :content, :string
belongs_to :owner, MyApp.Accounts.User, foreign_key: :owner_id
has_many :comments, MyApp.Content.Comment, foreign_key: :post_id
timestamps()
end
我也有一个相关的苦艾酒对象。
object :post do
field :id, :integer
field :title, :string
field :content, :string
field :owner, :user, resolve: assoc(:owner)
field :comments, list_of(:comment), resolve: assoc(:comments)
end
查询按预期工作。
现在我想active
在模式中添加一个布尔字段,Comments
以便我可以执行软删除;我只会在其中选择评论,我将通过设置为active == true
删除评论。active
false
我将该字段添加到我的架构中:
field :active, :boolean, default: true, null: false
现在我只希望苦艾酒:comments
字段返回活跃的评论。我有一个自定义解析器...
field :comments, list_of(:comment), resolve: fn (query,_,resolution) ->
query =
from c in MyApp.Content.Comment,
where: c.post_id == ^query.id,
where: c.active == true,
select: c
{:ok, MyApp.Repo.all(query)}
end
不过,我担心这会遇到 N+1 问题。有没有更优雅的方法来做到这一点?