Compare commits
6 Commits
volodymyr/
...
kat/update
Author | SHA1 | Date | |
---|---|---|---|
b40554d38d | |||
194d7c66a0 | |||
3adc301935 | |||
9232c673e8 | |||
c2cb411469 | |||
44ddc732a1 |
@@ -1886,6 +1886,12 @@ export type FloatShotOrdering = {
|
||||
startingAt?: InputMaybe<Scalars["Float"]["input"]>;
|
||||
};
|
||||
|
||||
export type FollowingUser = {
|
||||
__typename?: "FollowingUser";
|
||||
id: Scalars["Int"]["output"];
|
||||
username: Scalars["String"]["output"];
|
||||
};
|
||||
|
||||
export type GetProfileUploadLinkErrors = {
|
||||
__typename?: "GetProfileUploadLinkErrors";
|
||||
error: TooManyProfileImageUploadsErr;
|
||||
@@ -2527,7 +2533,7 @@ export type UsernamesAndFollowingResponse = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<Scalars["Int"]["output"]>;
|
||||
following: Array<Scalars["Int"]["output"]>;
|
||||
usernames: Array<Scalars["String"]["output"]>;
|
||||
usernamesAndIds: Array<FollowingUser>;
|
||||
};
|
||||
|
||||
export type VideoFilterInput = {
|
||||
@@ -2700,7 +2706,11 @@ export type GetFeedQuery = {
|
||||
elapsedTime?: number | null;
|
||||
tableSize: number;
|
||||
owner?: { __typename?: "UserGQL"; username: string } | null;
|
||||
stream?: { __typename?: "UploadStreamGQL"; isCompleted: boolean } | null;
|
||||
stream?: {
|
||||
__typename?: "UploadStreamGQL";
|
||||
id: string;
|
||||
isCompleted: boolean;
|
||||
} | null;
|
||||
tags: Array<{
|
||||
__typename?: "VideoTag";
|
||||
name: string;
|
||||
@@ -3143,7 +3153,11 @@ export type GetUsernamesAndFollowingQuery = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<number>;
|
||||
following: Array<number>;
|
||||
usernames: Array<string>;
|
||||
usernamesAndIds: Array<{
|
||||
__typename?: "FollowingUser";
|
||||
username: string;
|
||||
id: number;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -4053,6 +4067,7 @@ export const GetFeedDocument = gql`
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
@@ -5134,7 +5149,10 @@ export const GetUsernamesAndFollowingDocument = gql`
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernames
|
||||
usernamesAndIds {
|
||||
username
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
@@ -21,6 +21,7 @@ query GetFeed(
|
||||
elapsedTime
|
||||
screenshotUri
|
||||
stream {
|
||||
id
|
||||
isCompleted
|
||||
}
|
||||
tableSize
|
||||
|
@@ -71,7 +71,10 @@ query getUsernamesAndFollowing(
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernames
|
||||
usernamesAndIds {
|
||||
username
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -555,11 +555,16 @@ input CreatedAfter @oneOf {
|
||||
}
|
||||
|
||||
type UsernamesAndFollowingResponse {
|
||||
usernames: [String!]!
|
||||
usernamesAndIds: [FollowingUser!]!
|
||||
following: [Int!]!
|
||||
followers: [Int!]!
|
||||
}
|
||||
|
||||
type FollowingUser {
|
||||
id: Int!
|
||||
username: String!
|
||||
}
|
||||
|
||||
type UserPlayTimeGQL {
|
||||
totalSeconds: Float!
|
||||
}
|
||||
|
Reference in New Issue
Block a user