Phoenix Contexts - is it common to preload all resources on the context methods with whatever everything needs access to?

Yes. However, keep in mind you can always preload after the fact too, so you can do this:

User.get_user!(...) |> Blog.preload_posts_for_user(...) |> Other.preload_another_for_user(...)
5 Likes