Don't load shots in feed

This commit is contained in:
Ivan Malison 2024-03-31 22:17:29 -06:00
parent ed751f5cdd
commit 797ca3a387
2 changed files with 0 additions and 25 deletions

View File

@ -491,15 +491,6 @@ export type GetFeedQuery = {
endTime?: any | null; endTime?: any | null;
elapsedTime?: number | null; elapsedTime?: number | null;
owner?: { __typename?: "UserGQL"; username: string } | null; owner?: { __typename?: "UserGQL"; username: string } | null;
shots: Array<{
__typename?: "ShotGQL";
id?: number | null;
videoId?: number | null;
startFrame?: number | null;
endFrame?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
}>;
stream?: { stream?: {
__typename?: "UploadStreamGQL"; __typename?: "UploadStreamGQL";
id: string; id: string;
@ -917,14 +908,6 @@ export const GetFeedDocument = gql`
averageTimeBetweenShots averageTimeBetweenShots
createdAt createdAt
updatedAt updatedAt
shots {
id
videoId
startFrame
endFrame
createdAt
updatedAt
}
startTime startTime
endTime endTime
elapsedTime elapsedTime

View File

@ -13,14 +13,6 @@ query GetFeed($limit: Int! = 5, $after: String = null) {
averageTimeBetweenShots averageTimeBetweenShots
createdAt createdAt
updatedAt updatedAt
shots {
id
videoId
startFrame
endFrame
createdAt
updatedAt
}
startTime startTime
endTime endTime
elapsedTime elapsedTime