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;
elapsedTime?: number | 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?: {
__typename?: "UploadStreamGQL";
id: string;
@ -917,14 +908,6 @@ export const GetFeedDocument = gql`
averageTimeBetweenShots
createdAt
updatedAt
shots {
id
videoId
startFrame
endFrame
createdAt
updatedAt
}
startTime
endTime
elapsedTime

View File

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