Compare commits

...

2 Commits

Author SHA1 Message Date
f6f6404302 Merge pull request 'Delete user with ids' (#92) from kat/remove-user-ids into master
Reviewed-on: #92
2024-10-25 01:08:04 -06:00
4609af726b Delete user with ids
All checks were successful
Tests / Tests (pull_request) Successful in 9s
2024-10-25 01:07:23 -06:00
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
}
}
}