Compare commits

..

No commits in common. "d75822c4654f59377d57443cd9b781c60c8e0fe0" and "e1237363f07137835174e784921eac4bf0277f27" have entirely different histories.

2 changed files with 5 additions and 1 deletions

View File

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

View File

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