Delete user with ids
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
Kat Huang 2024-10-25 01:07:23 -06:00
parent c5919c90d0
commit 4609af726b
2 changed files with 0 additions and 13 deletions

View File

@ -3147,11 +3147,6 @@ export type GetUsernamesAndFollowingQuery = {
__typename?: "UsernamesAndFollowingResponse";
followers: Array<number>;
following: Array<number>;
usernamesAndIds: Array<{
__typename?: "UserGQL";
username: string;
id: number;
}>;
};
};
@ -5143,10 +5138,6 @@ export const GetUsernamesAndFollowingDocument = gql`
) {
followers
following
usernamesAndIds {
username
id
}
}
}
`;

View File

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