Merge pull request 'Return username in follow unfollow' (#96) from kat/return-username into master

Reviewed-on: #96
This commit is contained in:
Kat Huang 2024-10-27 19:19:41 -06:00
commit 84188a6066
2 changed files with 6 additions and 20 deletions

View File

@ -3173,10 +3173,7 @@ export type FollowUserMutationVariables = Exact<{
export type FollowUserMutation = {
__typename?: "Mutation";
followUser: {
__typename?: "UserGQL";
followers?: Array<{ __typename?: "UserGQL"; username: string }> | null;
};
followUser: { __typename?: "UserGQL"; username: string };
};
export type UnfollowUserMutationVariables = Exact<{
@ -3185,10 +3182,7 @@ export type UnfollowUserMutationVariables = Exact<{
export type UnfollowUserMutation = {
__typename?: "Mutation";
unfollowUser: {
__typename?: "UserGQL";
followers?: Array<{ __typename?: "UserGQL"; username: string }> | null;
};
unfollowUser: { __typename?: "UserGQL"; username: string };
};
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
@ -5324,9 +5318,7 @@ export type GetUserTagsQueryResult = Apollo.QueryResult<
export const FollowUserDocument = gql`
mutation followUser($followedUserId: Int!) {
followUser(followedUserId: $followedUserId) {
followers {
username
}
username
}
}
`;
@ -5376,9 +5368,7 @@ export type FollowUserMutationOptions = Apollo.BaseMutationOptions<
export const UnfollowUserDocument = gql`
mutation unfollowUser($followedUserId: Int!) {
unfollowUser(followedUserId: $followedUserId) {
followers {
username
}
username
}
}
`;

View File

@ -89,16 +89,12 @@ query GetUserTags {
mutation followUser($followedUserId: Int!) {
followUser(followedUserId: $followedUserId) {
followers {
username
}
username
}
}
mutation unfollowUser($followedUserId: Int!) {
unfollowUser(followedUserId: $followedUserId) {
followers {
username
}
username
}
}