Compare commits
No commits in common. "84188a6066edce6f86f7553994597d7281ff1af6" and "79784faba1a4614c2e399de2bb544d5ed2d90bea" have entirely different histories.
84188a6066
...
79784faba1
@ -3173,7 +3173,10 @@ export type FollowUserMutationVariables = Exact<{
|
||||
|
||||
export type FollowUserMutation = {
|
||||
__typename?: "Mutation";
|
||||
followUser: { __typename?: "UserGQL"; username: string };
|
||||
followUser: {
|
||||
__typename?: "UserGQL";
|
||||
followers?: Array<{ __typename?: "UserGQL"; username: string }> | null;
|
||||
};
|
||||
};
|
||||
|
||||
export type UnfollowUserMutationVariables = Exact<{
|
||||
@ -3182,7 +3185,10 @@ export type UnfollowUserMutationVariables = Exact<{
|
||||
|
||||
export type UnfollowUserMutation = {
|
||||
__typename?: "Mutation";
|
||||
unfollowUser: { __typename?: "UserGQL"; username: string };
|
||||
unfollowUser: {
|
||||
__typename?: "UserGQL";
|
||||
followers?: Array<{ __typename?: "UserGQL"; username: string }> | null;
|
||||
};
|
||||
};
|
||||
|
||||
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
||||
@ -5318,9 +5324,11 @@ export type GetUserTagsQueryResult = Apollo.QueryResult<
|
||||
export const FollowUserDocument = gql`
|
||||
mutation followUser($followedUserId: Int!) {
|
||||
followUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
export type FollowUserMutationFn = Apollo.MutationFunction<
|
||||
FollowUserMutation,
|
||||
@ -5368,9 +5376,11 @@ export type FollowUserMutationOptions = Apollo.BaseMutationOptions<
|
||||
export const UnfollowUserDocument = gql`
|
||||
mutation unfollowUser($followedUserId: Int!) {
|
||||
unfollowUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
export type UnfollowUserMutationFn = Apollo.MutationFunction<
|
||||
UnfollowUserMutation,
|
||||
|
@ -89,12 +89,16 @@ query GetUserTags {
|
||||
|
||||
mutation followUser($followedUserId: Int!) {
|
||||
followUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
mutation unfollowUser($followedUserId: Int!) {
|
||||
unfollowUser(followedUserId: $followedUserId) {
|
||||
followers {
|
||||
username
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user