Seeing all data in livebook cell

Hi:

What settings need to be changed to see all data in livebook cell?

For example, I see the following (data modified):

    [
  %{
    date: ~N[2020-09-28 00:00:00],
    grade: nnn,
    name: "xyz",
    org: "mmm",
    salary: nnnn
  },
  %{
    date: ~N[2019-09-30 00:00:00],
    grade:nn,
    name: "xyz",
    org: "mmm",
    salary: nnnn
  },

(n more rows in between)

  %{date: ~N[2098-08-03 00:00:00], grade: nnn, ...},
  %{date: ~N[2098-05-11 00:00:00], ...},
  %{...},
  ...
]

What needs to be done to see all the data?

Thanks!
Gani -

Hi,

the cell return output is always truncated as far as I known.
But you could print the output by piping it into IO.inspect(limit: :infinity).

thanks! That worked fine.
gani-