Skip to content

Commit ed94333

Browse files
committed
feat(graphql): add buffer to calendar entries
1 parent 7d3407c commit ed94333

5 files changed

Lines changed: 1086 additions & 109 deletions

File tree

bccm_core/lib/src/features/graphql/queries/live/calendar_days.graphql

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,28 @@ query GetCalendarDay($date: Date!) {
77
}
88

99
fragment CalendarEntry on CalendarEntry {
10+
__typename
1011
id
1112
title
1213
description
1314
start
1415
end
15-
__typename
16+
buffer {
17+
url
18+
availableUntil
19+
}
1620
... on EpisodeCalendarEntry {
21+
id
1722
episode {
23+
__typename
1824
id
1925
publishDate
2026
image(style: default)
2127
locked
22-
__typename
2328
}
24-
id
2529
}
2630
... on SimpleCalendarEntry {
2731
id
28-
__typename
2932
}
3033
}
3134

0 commit comments

Comments
 (0)