add id's to new getVideo w/ metric queries to prevent cache merge issues
All checks were successful
Tests / Tests (pull_request) Successful in 12s

This commit is contained in:
2024-06-05 11:51:15 -07:00
parent 1cc0660a93
commit 37a13f1418
2 changed files with 13 additions and 2 deletions

View File

@@ -149,16 +149,19 @@ query GetVideo($videoId: Int!) {
query GetAverageTimePerShotForVideo($videoId: Int!) {
getVideo(videoId: $videoId) {
id
averageTimeBetweenShots
}
}
query GetElapsedTimeForVideo($videoId: Int!) {
getVideo(videoId: $videoId) {
id
elapsedTime
}
}
query GetMedianRunForVideo($videoId: Int!) {
getVideo(videoId: $videoId) {
id
medianRun
}
}