Compare commits

..

No commits in common. "f6f6404302ec5c797e0c7503273de65a894f849f" and "c5919c90d0955a11025cc76a9a7ab22ae587aae7" have entirely different histories.

2 changed files with 13 additions and 0 deletions

View File

@ -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
}
}
}
`;

View File

@ -71,6 +71,10 @@ query getUsernamesAndFollowing(
) {
followers
following
usernamesAndIds {
username
id
}
}
}