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

@@ -0,0 +1,10 @@
query GetVideoMakePercentageIntervals($videoId: ID!) {
getVideoMakePercentageIntervals(videoId: $videoId) {
makePercentageIntervals {
startFrame
endFrame
framesPerSecond
makePercentage
}
}
}