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

View File

@ -149,19 +149,16 @@ query GetVideo($videoId: Int!) {
query GetAverageTimePerShotForVideo($videoId: Int!) { query GetAverageTimePerShotForVideo($videoId: Int!) {
getVideo(videoId: $videoId) { getVideo(videoId: $videoId) {
id
averageTimeBetweenShots averageTimeBetweenShots
} }
} }
query GetElapsedTimeForVideo($videoId: Int!) { query GetElapsedTimeForVideo($videoId: Int!) {
getVideo(videoId: $videoId) { getVideo(videoId: $videoId) {
id
elapsedTime elapsedTime
} }
} }
query GetMedianRunForVideo($videoId: Int!) { query GetMedianRunForVideo($videoId: Int!) {
getVideo(videoId: $videoId) { getVideo(videoId: $videoId) {
id
medianRun medianRun
} }
} }