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!]! }