Merge branch 'master' into loewy/restore-cursor-state-from-api

This commit is contained in:
Loewy
2024-04-23 15:36:37 -07:00
3 changed files with 126 additions and 0 deletions

View File

@@ -102,3 +102,15 @@ query GetVideoDetails($videoId: Int!) {
}
}
}
query GetVideos($videoIds: [Int!]!) {
getVideos(videoIds: $videoIds) {
id
name
framesPerSecond
playlist {
m3u8Text
segmentDurations
}
}
}