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