Add get runs for highlights
This commit is contained in:
20
src/operations/runs.gql
Normal file
20
src/operations/runs.gql
Normal file
@@ -0,0 +1,20 @@
|
||||
query GetRunsForHighlights(
|
||||
$filterInput: RunFilterInput!
|
||||
$runIds: [Int!] = null
|
||||
$runsOrdering: GetRunsOrdering
|
||||
) {
|
||||
getRuns(
|
||||
filterInput: $filterInput
|
||||
runIds: $runIds
|
||||
runsOrdering: $runsOrdering
|
||||
) {
|
||||
count
|
||||
runs {
|
||||
id
|
||||
runLength
|
||||
userId
|
||||
videoId
|
||||
}
|
||||
runIds
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user