Remove user id from feed args

This commit is contained in:
Ivan Malison 2024-10-21 01:12:17 -06:00
parent b16b36588f
commit b9036001aa
2 changed files with 0 additions and 2 deletions

View File

@ -2096,7 +2096,6 @@ export type QueryGetFeedVideosArgs = {
after?: InputMaybe<Scalars["String"]["input"]>;
filters?: InputMaybe<VideoFilterInput>;
limit?: Scalars["Int"]["input"];
userId?: InputMaybe<Scalars["Int"]["input"]>;
};
export type QueryGetOrderedShotsArgs = {

View File

@ -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