Hi all, thank you for the hard work. I have a question.
Suppose that I have a decorated field in the Post schema, but then I do something like
def preload(users_query, preloads) do
Users
|> Repo.all()
|> Repo.preload(preloads)
end
where preloads is dynamic, and could be i.e. [:posts, :comments, :likes, ...]
Which is the correct way to work in cases where you preload the relations, and those relations have decorated fields?
Thank you!