From b9036001aa2795b2398ff9b7e94f736bc42dfc69 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 21 Oct 2024 01:12:17 -0600 Subject: [PATCH] Remove user id from feed args --- src/index.tsx | 1 - src/schema.gql | 1 - 2 files changed, 2 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index c0bfec8..5e050c4 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2096,7 +2096,6 @@ export type QueryGetFeedVideosArgs = { after?: InputMaybe; filters?: InputMaybe; limit?: Scalars["Int"]["input"]; - userId?: InputMaybe; }; export type QueryGetOrderedShotsArgs = { diff --git a/src/schema.gql b/src/schema.gql index 7a85d41..824aadb 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -46,7 +46,6 @@ type Query { getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL! getVideos(videoIds: [Int!]!): [VideoGQL!]! getFeedVideos( - userId: Int = null limit: Int! = 5 after: String = null filters: VideoFilterInput = null