add lightweigth gql call to get video header info
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-10-10 17:02:18 -07:00
parent c8cf97421b
commit c426e753cd
2 changed files with 97 additions and 0 deletions

View File

@@ -237,3 +237,11 @@ query GetVideoForClipTimes($videoId: Int!) {
}
}
}
query GetHeaderInfoByVideoId($videoId: Int!) {
getVideo(videoId: $videoId) {
id
name
startTime
}
}