Return elapsed time in make percentge time series gql

This commit is contained in:
2024-03-14 12:57:31 -06:00
parent 09bbbf0b3d
commit 43c1f7be09
3 changed files with 10 additions and 16 deletions

View File

@@ -8,7 +8,10 @@ type Query {
getShots(filterInput: FilterInput = null): [ShotGQL!]!
getBucketSet(keyName: String!): BucketSetGQL
getVideoFeedForUser(limit: Int! = 5, after: String = null): VideoFeedGQL!
getVideoMakePercentageIntervals(videoId: ID!): [MakePercentageIntervalGQL!]!
getVideoMakePercentageIntervals(
videoId: ID!
intervalDuration: Int! = 300
): [MakePercentageIntervalGQL!]!
}
type AggregateResultGQL {
@@ -268,10 +271,8 @@ type PageInfoGQL {
}
type MakePercentageIntervalGQL {
startFrame: Float!
endFrame: Float!
framesPerSecond: Float!
makePercentage: Float!
elapsedTime: Float!
}
type Mutation {