add averageTimePerShot, elapsedTime and MedianRun forVideo queries
All checks were successful
Tests / Tests (pull_request) Successful in 8s
All checks were successful
Tests / Tests (pull_request) Successful in 8s
This commit is contained in:
@@ -91,11 +91,9 @@ query GetVideoDetails($videoId: Int!) {
|
||||
elapsedTime
|
||||
endTime
|
||||
makePercentage
|
||||
makePercentage
|
||||
medianRun
|
||||
startTime
|
||||
totalShots
|
||||
totalShots
|
||||
totalShotsMade
|
||||
createdAt
|
||||
updatedAt
|
||||
@@ -148,3 +146,19 @@ query GetVideo($videoId: Int!) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
query GetAverageTimePerShotForVideo($videoId: Int!) {
|
||||
getVideo(videoId: $videoId) {
|
||||
averageTimeBetweenShots
|
||||
}
|
||||
}
|
||||
query GetElapsedTimeForVideo($videoId: Int!) {
|
||||
getVideo(videoId: $videoId) {
|
||||
elapsedTime
|
||||
}
|
||||
}
|
||||
query GetMedianRunForVideo($videoId: Int!) {
|
||||
getVideo(videoId: $videoId) {
|
||||
medianRun
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user