Compare commits

..

No commits in common. "f1408078863b60f0c8521561b21e48d97d2367a8" and "1cc0660a93a7753565bf28126898fa18519f134a" have entirely different histories.

2 changed files with 2 additions and 13 deletions

View File

@ -1052,7 +1052,6 @@ export type GetAverageTimePerShotForVideoQuery = {
__typename?: "Query";
getVideo: {
__typename?: "VideoGQL";
id: number;
averageTimeBetweenShots?: number | null;
};
};
@ -1063,11 +1062,7 @@ export type GetElapsedTimeForVideoQueryVariables = Exact<{
export type GetElapsedTimeForVideoQuery = {
__typename?: "Query";
getVideo: {
__typename?: "VideoGQL";
id: number;
elapsedTime?: number | null;
};
getVideo: { __typename?: "VideoGQL"; elapsedTime?: number | null };
};
export type GetMedianRunForVideoQueryVariables = Exact<{
@ -1076,7 +1071,7 @@ export type GetMedianRunForVideoQueryVariables = Exact<{
export type GetMedianRunForVideoQuery = {
__typename?: "Query";
getVideo: { __typename?: "VideoGQL"; id: number; medianRun?: number | null };
getVideo: { __typename?: "VideoGQL"; medianRun?: number | null };
};
export type CreateUploadStreamMutationVariables = Exact<{
@ -2399,7 +2394,6 @@ export type GetVideoQueryResult = Apollo.QueryResult<
export const GetAverageTimePerShotForVideoDocument = gql`
query GetAverageTimePerShotForVideo($videoId: Int!) {
getVideo(videoId: $videoId) {
id
averageTimeBetweenShots
}
}
@ -2473,7 +2467,6 @@ export type GetAverageTimePerShotForVideoQueryResult = Apollo.QueryResult<
export const GetElapsedTimeForVideoDocument = gql`
query GetElapsedTimeForVideo($videoId: Int!) {
getVideo(videoId: $videoId) {
id
elapsedTime
}
}
@ -2547,7 +2540,6 @@ export type GetElapsedTimeForVideoQueryResult = Apollo.QueryResult<
export const GetMedianRunForVideoDocument = gql`
query GetMedianRunForVideo($videoId: Int!) {
getVideo(videoId: $videoId) {
id
medianRun
}
}

View File

@ -149,19 +149,16 @@ 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
}
}