Add an operation to get details for updating a video

Fixes railbird/railbird#1164
This commit is contained in:
2024-03-22 19:27:57 -06:00
parent 87fabdc8f9
commit 8102a0f40b
3 changed files with 142 additions and 1 deletions

View File

@@ -155,6 +155,7 @@ type VideoGQL {
elapsedTime: Float
framesPerSecond: Int!
stream: UploadStreamGQL
tags: [VideoTag!]!
}
type ShotGQL {
@@ -258,6 +259,15 @@ type StreamErrorGQL {
message: String!
}
type VideoTag {
tagClasses: [VideoTagClass!]!
name: String!
}
type VideoTagClass {
name: String!
}
type BucketSetGQL {
keyName: String!
feature: String!