Merge pull request 'Add shots to runs operation to get the id' (#162) from loewy/add-shots-in-runs into master
Reviewed-on: #162
This commit is contained in:
commit
9b27d288da
@ -3407,6 +3407,7 @@ export type GetRunsForHighlightsQuery = {
|
||||
runLength: number;
|
||||
userId: number;
|
||||
videoId: number;
|
||||
shots: Array<{ __typename?: "ShotGQL"; videoId: number; id: number }>;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
@ -5769,6 +5770,10 @@ export const GetRunsForHighlightsDocument = gql`
|
||||
runLength
|
||||
userId
|
||||
videoId
|
||||
shots {
|
||||
videoId
|
||||
id
|
||||
}
|
||||
}
|
||||
runIds
|
||||
}
|
||||
|
@ -14,6 +14,10 @@ query GetRunsForHighlights(
|
||||
runLength
|
||||
userId
|
||||
videoId
|
||||
shots {
|
||||
videoId
|
||||
id
|
||||
}
|
||||
}
|
||||
runIds
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user