Nested items in Ecto, sorting

Maybe

import Ecto.Query

ctg =
  Category 
  |> Repo.get(123)
  |> Repo.preload([articles: {from(a in Article, order_by: a.inserted_at), :mmedia_entity}]

See more examples at Ecto.Repo — Ecto v3.14.0.