Make startFrame endFrame required for Shot

This commit is contained in:
2024-05-20 16:19:20 -06:00
parent b2db5bde2b
commit d94dbd6c03
2 changed files with 12 additions and 12 deletions

View File

@@ -135,10 +135,10 @@ type MakePercentageIntervalGQL {
}
type ShotGQL {
id: Int
videoId: Int
startFrame: Int
endFrame: Int
id: Int!
videoId: Int!
startFrame: Int!
endFrame: Int!
createdAt: DateTime
updatedAt: DateTime
cueObjectFeatures: CueObjectFeaturesGQL