add query to get info for banner component
All checks were successful
Tests / Tests (pull_request) Successful in 8s

This commit is contained in:
2025-01-20 15:04:23 -08:00
parent ff0a11ea0d
commit e8e318b919
2 changed files with 126 additions and 0 deletions

View File

@@ -216,6 +216,23 @@ query GetHeaderInfoByVideoId($videoId: Int!) {
startTime
}
}
query GetBannerInfoByVideoId($videoId: Int!) {
getVideo(videoId: $videoId) {
id
name
stream {
id
lastIntendedSegmentBound
}
owner {
id
}
currentProcessing {
id
status
}
}
}
mutation FindPrerecordTableLayout($b64Image: String!, $videoId: Int!) {
findPrerecordTableLayout(b64Image: $b64Image, videoId: $videoId) {