Support make percentage time series
This commit is contained in:
@@ -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(
|
||||
|
Reference in New Issue
Block a user