Ecto.Query.WindowAPI.count

You're seeing just the function count, go back to Ecto.Query.WindowAPI module for more information.

Counts the entries in the table.

from p in Post, select: count()

Counts the given entry.

from p in Post, select: count(p.id)