update runs
All checks were successful
Tests / Tests (pull_request) Successful in 16s

This commit is contained in:
2025-04-30 18:18:40 +00:00
parent 170ff70b7a
commit e109e89a40
2 changed files with 159 additions and 0 deletions

View File

@@ -22,3 +22,32 @@ query GetRunsForHighlights(
runIds
}
}
query GetRunsWithTimestamps(
$filterInput: RunFilterInput!
$runIds: [Int!] = null
$runsOrdering: GetRunsOrdering
) {
getRuns(
filterInput: $filterInput
runIds: $runIds
runsOrdering: $runsOrdering
) {
count
runs {
id
runLength
userId
videoId
shots {
videoId
id
createdAt
shotDifficulty: pocketingIntentionFeatures {
difficulty
}
}
}
runIds
}
}