Compare commits

..

No commits in common. "a43b286e399f256dc0d3f4ac83c23f8d6ede9780" and "4d01e9814dcb67fd3c8fe55b5b0f51fb3c02c041" have entirely different histories.

2 changed files with 2 additions and 36 deletions

View File

@ -3173,12 +3173,7 @@ export type FollowUserMutationVariables = Exact<{
export type FollowUserMutation = {
__typename?: "Mutation";
followUser: {
__typename?: "UserGQL";
username: string;
following?: Array<{ __typename?: "UserGQL"; id: number }> | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
followUser: { __typename?: "UserGQL"; username: string };
};
export type UnfollowUserMutationVariables = Exact<{
@ -3187,12 +3182,7 @@ export type UnfollowUserMutationVariables = Exact<{
export type UnfollowUserMutation = {
__typename?: "Mutation";
unfollowUser: {
__typename?: "UserGQL";
username: string;
following?: Array<{ __typename?: "UserGQL"; id: number }> | null;
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
};
unfollowUser: { __typename?: "UserGQL"; username: string };
};
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
@ -5329,12 +5319,6 @@ export const FollowUserDocument = gql`
mutation followUser($followedUserId: Int!) {
followUser(followedUserId: $followedUserId) {
username
following {
id
}
followers {
id
}
}
}
`;
@ -5385,12 +5369,6 @@ export const UnfollowUserDocument = gql`
mutation unfollowUser($followedUserId: Int!) {
unfollowUser(followedUserId: $followedUserId) {
username
following {
id
}
followers {
id
}
}
}
`;

View File

@ -91,23 +91,11 @@ query GetUserTags {
mutation followUser($followedUserId: Int!) {
followUser(followedUserId: $followedUserId) {
username
following {
id
}
followers {
id
}
}
}
mutation unfollowUser($followedUserId: Int!) {
unfollowUser(followedUserId: $followedUserId) {
username
following {
id
}
followers {
id
}
}
}