2025-02-04 20:57:22 -07:00
|
|
|
query GetRunsForHighlights(
|
|
|
|
$filterInput: RunFilterInput!
|
|
|
|
$runIds: [Int!] = null
|
|
|
|
$runsOrdering: GetRunsOrdering
|
2025-04-24 12:43:07 -07:00
|
|
|
$limit: Int! = 500
|
|
|
|
$countRespectsLimit: Boolean! = false
|
2025-02-04 20:57:22 -07:00
|
|
|
) {
|
|
|
|
getRuns(
|
|
|
|
filterInput: $filterInput
|
|
|
|
runIds: $runIds
|
|
|
|
runsOrdering: $runsOrdering
|
2025-04-24 12:43:07 -07:00
|
|
|
limit: $limit
|
|
|
|
countRespectsLimit: $countRespectsLimit
|
2025-02-04 20:57:22 -07:00
|
|
|
) {
|
|
|
|
count
|
|
|
|
runs {
|
|
|
|
id
|
|
|
|
runLength
|
|
|
|
userId
|
|
|
|
videoId
|
2025-02-20 12:37:52 -08:00
|
|
|
shots {
|
|
|
|
videoId
|
|
|
|
id
|
|
|
|
}
|
2025-02-04 20:57:22 -07:00
|
|
|
}
|
|
|
|
runIds
|
|
|
|
}
|
|
|
|
}
|
2025-04-30 18:18:40 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|