Remove unused field from GetFeed operation

This commit is contained in:
Ivan Malison 2024-04-05 16:29:10 -06:00
parent a5f90ab105
commit a1581379fd
2 changed files with 1 additions and 25 deletions

View File

@ -498,23 +498,13 @@ export type GetFeedQuery = {
totalShotsMade: number;
totalShots: number;
makePercentage: number;
medianRun?: number | null;
averageTimeBetweenShots?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
startTime?: any | null;
endTime?: any | null;
elapsedTime?: number | null;
owner?: { __typename?: "UserGQL"; username: string } | null;
stream?: {
__typename?: "UploadStreamGQL";
id: string;
linksRequested: number;
uploadsCompleted: number;
isCompleted: boolean;
createdAt: any;
updatedAt: any;
} | null;
stream?: { __typename?: "UploadStreamGQL"; isCompleted: boolean } | null;
tags: Array<{
__typename?: "VideoTag";
name: string;
@ -923,20 +913,13 @@ export const GetFeedDocument = gql`
totalShotsMade
totalShots
makePercentage
medianRun
averageTimeBetweenShots
createdAt
updatedAt
startTime
endTime
elapsedTime
stream {
id
linksRequested
uploadsCompleted
isCompleted
createdAt
updatedAt
}
tags {
tagClasses {

View File

@ -13,20 +13,13 @@ query GetFeed(
totalShotsMade
totalShots
makePercentage
medianRun
averageTimeBetweenShots
createdAt
updatedAt
startTime
endTime
elapsedTime
stream {
id
linksRequested
uploadsCompleted
isCompleted
createdAt
updatedAt
}
tags {
tagClasses {