Support make percentage time series

This commit is contained in:
2024-03-05 01:05:54 -07:00
parent 314957218e
commit f64fc0e54a
3 changed files with 31 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ type Query {
getShots(filterInput: FilterInput = null): [ShotGQL!]!
getBucketSet(keyName: String!): BucketSetGQL
getVideoFeedForUser(limit: Int! = 5, after: String = null): VideoFeedGQL!
getVideoMakePercentageIntervals(videoId: ID!): [MakePercentageIntervalGQL!]!
}
type AggregateResultGQL {
@@ -221,6 +222,13 @@ type PageInfoGQL {
endCursor: String
}
type MakePercentageIntervalGQL {
startFrame: Float!
endFrame: Float!
framesPerSecond: Float!
makePercentage: Float!
}
type Mutation {
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
createUploadStream(