We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b9b4ac commit 146c9bfCopy full SHA for 146c9bf
2 files changed
frontend/src/pages/keynotes/[slug]/index.tsx
@@ -20,6 +20,9 @@ const KeynotePage = () => {
20
const {
21
data: {
22
conference: {
23
+ talk: {
24
+ slidoUrl,
25
+ },
26
keynote: {
27
title,
28
description,
@@ -69,6 +72,7 @@ const KeynotePage = () => {
69
72
speakers={speakers}
70
73
rooms={rooms.map((room) => room.name)}
71
74
youtubeVideoId={youtubeVideoId}
75
+ slidoUrl={slidoUrl}
76
/>
77
</Page>
78
);
frontend/src/pages/keynotes/keynote.graphql
@@ -1,6 +1,10 @@
1
query Keynote($conference: String!, $slug: String!, $language: String!) {
2
conference(code: $conference) {
3
id
4
+ talk(slug: $slug) {
5
+ id
6
+ slidoUrl
7
+ }
8
keynote(slug: $slug) {
9
10
title(language: $language)
0 commit comments