Merge pull request 'Fixed get user tags parameters' (#24) from micah/get-user-tags into master

Reviewed-on: #24
Reviewed-by: Ivan Malison <ivanmalison@gmail.com>
This commit is contained in:
micah_weitzman 2024-07-24 14:28:25 -06:00
commit c48512fc45
2 changed files with 1 additions and 5 deletions

View File

@ -1142,10 +1142,6 @@ export type QueryGetUserArgs = {
userId: Scalars["Int"]["input"]; userId: Scalars["Int"]["input"];
}; };
export type QueryGetUserTagsArgs = {
userId: Scalars["Int"]["input"];
};
export type QueryGetUserVideosArgs = { export type QueryGetUserVideosArgs = {
after?: InputMaybe<Scalars["String"]["input"]>; after?: InputMaybe<Scalars["String"]["input"]>;
filters?: InputMaybe<VideoFilterInput>; filters?: InputMaybe<VideoFilterInput>;

View File

@ -24,7 +24,7 @@ type Query {
after: String = null after: String = null
filters: VideoFilterInput = null filters: VideoFilterInput = null
): VideoHistoryGQL! ): VideoHistoryGQL!
getUserTags(userId: Int!): [TagGQL!]! getUserTags: [TagGQL!]!
getVideo(videoId: Int!): VideoGQL! getVideo(videoId: Int!): VideoGQL!
getVideos(videoIds: [Int!]!): [VideoGQL!]! getVideos(videoIds: [Int!]!): [VideoGQL!]!
} }