Compare commits
No commits in common. "f6f6404302ec5c797e0c7503273de65a894f849f" and "c5919c90d0955a11025cc76a9a7ab22ae587aae7" have entirely different histories.
f6f6404302
...
c5919c90d0
@ -3147,6 +3147,11 @@ export type GetUsernamesAndFollowingQuery = {
|
||||
__typename?: "UsernamesAndFollowingResponse";
|
||||
followers: Array<number>;
|
||||
following: Array<number>;
|
||||
usernamesAndIds: Array<{
|
||||
__typename?: "UserGQL";
|
||||
username: string;
|
||||
id: number;
|
||||
}>;
|
||||
};
|
||||
};
|
||||
|
||||
@ -5138,6 +5143,10 @@ export const GetUsernamesAndFollowingDocument = gql`
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernamesAndIds {
|
||||
username
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
@ -71,6 +71,10 @@ query getUsernamesAndFollowing(
|
||||
) {
|
||||
followers
|
||||
following
|
||||
usernamesAndIds {
|
||||
username
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user