This article helps to explain possible way to view user login information in Paragon GUI.*(23.X or 24.X)
As per current paragon automation 1.0 design-
SELECT
name AS username,
first_name,
last_name,
to_char(to_timestamp(last_login_at / 1000, 'yyyy-mm-dd HH24:MI:SS') AS last_login_time
FROM
user_detail
WHERE
last_login_at IS NOT NULL
ORDER BY
last_login_at DESC ;
Other than this, in the current design from GUI or DB we only have limited options.