Add getUsernames
This commit is contained in:
@@ -944,6 +944,7 @@ export type Query = {
|
||||
getShots: Array<ShotGql>;
|
||||
getUser?: Maybe<UserGql>;
|
||||
getUserVideos: VideoHistoryGql;
|
||||
getUsernames: Array<Scalars["String"]["output"]>;
|
||||
getVideo: VideoGql;
|
||||
getVideoMakePercentageIntervals: Array<MakePercentageIntervalGql>;
|
||||
getVideos: Array<VideoGql>;
|
||||
@@ -976,6 +977,12 @@ export type QueryGetUserVideosArgs = {
|
||||
userId?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
};
|
||||
|
||||
export type QueryGetUsernamesArgs = {
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
matchString?: InputMaybe<Scalars["String"]["input"]>;
|
||||
};
|
||||
|
||||
export type QueryGetVideoArgs = {
|
||||
videoId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user