add operation for hls init link
All checks were successful
Tests / Tests (pull_request) Successful in 14s

This commit is contained in:
2024-07-15 17:29:55 -07:00
parent 4ca27317b4
commit 67d8bcac21
2 changed files with 81 additions and 0 deletions

View File

@@ -14,6 +14,16 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
}
}
mutation GetHlsInitUploadLink($videoId: Int!) {
getHlsInitUploadLink(videoId: $videoId) {
uploadUrl
headers {
key
value
}
}
}
mutation EditUploadStream(
$videoId: Int!
$videoMetadataInput: VideoMetadataInput!