Compare commits
1 Commits
kat/update
...
kat/use-us
Author | SHA1 | Date | |
---|---|---|---|
2554c1c4f3 |
@@ -2170,6 +2170,7 @@ export type Query = {
|
|||||||
getUserVideos: VideoHistoryGql;
|
getUserVideos: VideoHistoryGql;
|
||||||
getUsernames: Array<Scalars["String"]["output"]>;
|
getUsernames: Array<Scalars["String"]["output"]>;
|
||||||
getUsernamesAndFollowing: UsernamesAndFollowingResponse;
|
getUsernamesAndFollowing: UsernamesAndFollowingResponse;
|
||||||
|
getUsernamesAndFollowingOld: UsernamesAndFollowingResponse;
|
||||||
getVideo: VideoGql;
|
getVideo: VideoGql;
|
||||||
getVideoMakePercentageIntervals: Array<MakePercentageIntervalGql>;
|
getVideoMakePercentageIntervals: Array<MakePercentageIntervalGql>;
|
||||||
getVideos: Array<VideoGql>;
|
getVideos: Array<VideoGql>;
|
||||||
@@ -2246,6 +2247,13 @@ export type QueryGetUsernamesAndFollowingArgs = {
|
|||||||
userId: Scalars["Int"]["input"];
|
userId: Scalars["Int"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type QueryGetUsernamesAndFollowingOldArgs = {
|
||||||
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
|
matchString?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
userId: Scalars["Int"]["input"];
|
||||||
|
};
|
||||||
|
|
||||||
export type QueryGetVideoArgs = {
|
export type QueryGetVideoArgs = {
|
||||||
debuggingJson?: InputMaybe<Scalars["JSON"]["input"]>;
|
debuggingJson?: InputMaybe<Scalars["JSON"]["input"]>;
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
|
@@ -41,6 +41,12 @@ type Query {
|
|||||||
limit: Int = 100
|
limit: Int = 100
|
||||||
after: String = null
|
after: String = null
|
||||||
): UsernamesAndFollowingResponse!
|
): UsernamesAndFollowingResponse!
|
||||||
|
getUsernamesAndFollowingOld(
|
||||||
|
userId: Int!
|
||||||
|
matchString: String = null
|
||||||
|
limit: Int = 100
|
||||||
|
after: String = null
|
||||||
|
): UsernamesAndFollowingResponse!
|
||||||
getPlayTime(userId: Int!): UserPlayTimeGQL!
|
getPlayTime(userId: Int!): UserPlayTimeGQL!
|
||||||
getUserVideos(
|
getUserVideos(
|
||||||
userId: Int = null
|
userId: Int = null
|
||||||
|
Reference in New Issue
Block a user