Compare commits
2 Commits
kat/remove
...
volodymyr/
Author | SHA1 | Date | |
---|---|---|---|
b21a425065 | |||
b736a95124 |
@@ -2527,7 +2527,7 @@ export type UsernamesAndFollowingResponse = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<Scalars["Int"]["output"]>;
|
||||
following: Array<Scalars["Int"]["output"]>;
|
||||
usernamesAndIds: Array<UserGql>;
|
||||
usernames: Array<Scalars["String"]["output"]>;
|
||||
};
|
||||
|
||||
export type VideoFilterInput = {
|
||||
@@ -3147,6 +3147,7 @@ export type GetUsernamesAndFollowingQuery = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<number>;
|
||||
following: Array<number>;
|
||||
usernames: Array<string>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -5138,6 +5139,7 @@ export const GetUsernamesAndFollowingDocument = gql`
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernames
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
@@ -71,6 +71,7 @@ query getUsernamesAndFollowing(
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernames
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -555,7 +555,7 @@ input CreatedAfter @oneOf {
|
||||
}
|
||||
|
||||
type UsernamesAndFollowingResponse {
|
||||
usernamesAndIds: [UserGQL!]!
|
||||
usernames: [String!]!
|
||||
following: [Int!]!
|
||||
followers: [Int!]!
|
||||
}
|
||||
|
Reference in New Issue
Block a user