Compare commits
No commits in common. "c48512fc45efdd9c0600054694c076aa420a6360" and "4feeba5150fe6ed99ac7f562ffb0112f6b59fa68" have entirely different histories.
c48512fc45
...
4feeba5150
@ -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>;
|
||||
|
@ -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!]!
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user