mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 20:30:54 -05:00
21 lines
428 B
SQL
21 lines
428 B
SQL
select
|
|
"CalendarEvent"."id",
|
|
"CalendarEvent"."name",
|
|
json_group_array(
|
|
json_object(
|
|
'stageId',
|
|
"MapPoolMap"."stageId",
|
|
'mode',
|
|
"MapPoolMap"."mode"
|
|
)
|
|
) as "mapPool"
|
|
from
|
|
"CalendarEvent"
|
|
join "MapPoolMap" on "CalendarEvent"."id" = "MapPoolMap"."calendarEventId"
|
|
where
|
|
"CalendarEvent"."authorId" = @authorId
|
|
group by
|
|
"CalendarEvent"."id"
|
|
order by
|
|
"CalendarEvent"."id" desc
|
|
limit 5 |