From d75822c4654f59377d57443cd9b781c60c8e0fe0 Mon Sep 17 00:00:00 2001 From: Micah Weitzman Date: Wed, 24 Jul 2024 11:47:50 -0700 Subject: [PATCH] Fixed get user tags parameters --- src/index.tsx | 4 ---- src/schema.gql | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 5c6c8b9..e10cf75 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1142,10 +1142,6 @@ export type QueryGetUserArgs = { userId: Scalars["Int"]["input"]; }; -export type QueryGetUserTagsArgs = { - userId: Scalars["Int"]["input"]; -}; - export type QueryGetUserVideosArgs = { after?: InputMaybe; filters?: InputMaybe; diff --git a/src/schema.gql b/src/schema.gql index 6c41273..befb332 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -24,7 +24,7 @@ type Query { after: String = null filters: VideoFilterInput = null ): VideoHistoryGQL! - getUserTags(userId: Int!): [TagGQL!]! + getUserTags: [TagGQL!]! getVideo(videoId: Int!): VideoGQL! getVideos(videoIds: [Int!]!): [VideoGQL!]! }