不要在控制台中截断查询结果

Don't truncate query results in the console

我做了这个查询:

query = from i in MyApp.Image, where: i.deleted_at >= ^Timex.beginning_of_day(date), where: i.deleted_at <= ^Timex.end_of_day(date), select: i.path, order_by: [asc: i.deleted_at]

当我调用查询时:

MyApp.Repo.all(query)

我得到 62 个结果,但它会在前 50 个结果后将它们截断为 ... 以获取剩余记录:

50 个结果中的最后一个。

"images/8a3ded267cbb45cc848032c826453c8.png", ...]

有什么方法可以告诉 elixir/ecto 不要截断结果?

iex 执行此命令或将其放入项目目录中的 .iex.exs 文件中:

IEx.configure(inspect: [limit: :infinity])

有关 Configuring the Shell 的更多信息。