mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 12:44:47 -05:00
18 lines
373 B
SQL
18 lines
373 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"
|
|
group by
|
|
"CalendarEvent"."id"
|
|
order by
|
|
"CalendarEvent"."id" desc |