2025-04-28 10:36:14 -04:00
|
|
|
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
|
|
|
|
|
|
-- NotificationRepository.search
|
|
|
|
|
select
|
|
|
|
|
"id",
|
|
|
|
|
"createdAt",
|
|
|
|
|
"level",
|
|
|
|
|
"type",
|
|
|
|
|
"title",
|
|
|
|
|
"description",
|
|
|
|
|
"data",
|
|
|
|
|
"readAt"
|
|
|
|
|
from
|
2025-07-14 10:13:06 -04:00
|
|
|
"notification"
|
2025-04-28 10:36:14 -04:00
|
|
|
where
|
|
|
|
|
"userId" = $1
|
|
|
|
|
and "deletedAt" is null
|
|
|
|
|
order by
|
|
|
|
|
"createdAt" desc
|
|
|
|
|
|
|
|
|
|
-- NotificationRepository.search (unread)
|
|
|
|
|
select
|
|
|
|
|
"id",
|
|
|
|
|
"createdAt",
|
|
|
|
|
"level",
|
|
|
|
|
"type",
|
|
|
|
|
"title",
|
|
|
|
|
"description",
|
|
|
|
|
"data",
|
|
|
|
|
"readAt"
|
|
|
|
|
from
|
2025-07-14 10:13:06 -04:00
|
|
|
"notification"
|
2025-04-28 10:36:14 -04:00
|
|
|
where
|
|
|
|
|
(
|
|
|
|
|
"userId" = $1
|
|
|
|
|
and "readAt" is null
|
|
|
|
|
)
|
|
|
|
|
and "deletedAt" is null
|
|
|
|
|
order by
|
|
|
|
|
"createdAt" desc
|