Remove field for now
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
Kat Huang 2024-10-25 01:00:06 -06:00
parent 194d7c66a0
commit 059e2149a0
2 changed files with 0 additions and 6 deletions

View File

@ -3147,7 +3147,6 @@ export type GetUsernamesAndFollowingQuery = {
__typename?: "UsernamesAndFollowingResponse";
followers: Array<number>;
following: Array<number>;
usernames: Array<string>;
};
};
@ -5139,7 +5138,6 @@ export const GetUsernamesAndFollowingDocument = gql`
) {
followers
following
usernames
}
}
`;

View File

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