Compare commits

..

1 Commits

Author SHA1 Message Date
dean
c6fff664cc Add GetAverageDifficultyForVideo query 2025-12-10 14:08:03 -08:00
3 changed files with 3615 additions and 10042 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -50,7 +50,6 @@ fragment VideoCardFields on VideoGQL {
streamSegmentType streamSegmentType
} }
tableSize tableSize
pocketSize
tags { tags {
tagClasses { tagClasses {
name name

View File

@@ -211,6 +211,13 @@ query GetMedianRunForVideo($videoId: Int!) {
} }
} }
query GetAverageDifficultyForVideo($videoId: Int!) {
getVideo(videoId: $videoId) {
id
averageDifficulty
}
}
fragment StreamWithEndFrames on UploadStreamGQL { fragment StreamWithEndFrames on UploadStreamGQL {
id id
streamSegmentType streamSegmentType