Compare commits
6 Commits
kat/update
...
c5919c90d0
| Author | SHA1 | Date | |
|---|---|---|---|
| c5919c90d0 | |||
| 605adc3293 | |||
| b40554d38d | |||
| 194d7c66a0 | |||
| 3adc301935 | |||
| 9232c673e8 |
@@ -2527,7 +2527,7 @@ export type UsernamesAndFollowingResponse = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<Scalars["Int"]["output"]>;
|
||||
following: Array<Scalars["Int"]["output"]>;
|
||||
usernames: Array<Scalars["String"]["output"]>;
|
||||
usernamesAndIds: Array<UserGql>;
|
||||
};
|
||||
|
||||
export type VideoFilterInput = {
|
||||
@@ -3147,7 +3147,11 @@ export type GetUsernamesAndFollowingQuery = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<number>;
|
||||
following: Array<number>;
|
||||
usernames: Array<string>;
|
||||
usernamesAndIds: Array<{
|
||||
__typename?: "UserGQL";
|
||||
username: string;
|
||||
id: number;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -5139,7 +5143,10 @@ export const GetUsernamesAndFollowingDocument = gql`
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernames
|
||||
usernamesAndIds {
|
||||
username
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -71,7 +71,10 @@ query getUsernamesAndFollowing(
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernamesAndIds
|
||||
usernamesAndIds {
|
||||
username
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -555,7 +555,7 @@ input CreatedAfter @oneOf {
|
||||
}
|
||||
|
||||
type UsernamesAndFollowingResponse {
|
||||
usernames: [String!]!
|
||||
usernamesAndIds: [UserGQL!]!
|
||||
following: [Int!]!
|
||||
followers: [Int!]!
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user