|
|
@@ -3255,12 +3255,12 @@ export type UnfollowUserMutation = {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export type GetUserFollowingFollowersQueryVariables = Exact<{
|
|
|
|
export type GetUserFollowingFollowersQueryVariables = Exact<{
|
|
|
|
userId: Scalars["Int"]["input"];
|
|
|
|
[key: string]: never;
|
|
|
|
}>;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
export type GetUserFollowingFollowersQuery = {
|
|
|
|
export type GetUserFollowingFollowersQuery = {
|
|
|
|
__typename?: "Query";
|
|
|
|
__typename?: "Query";
|
|
|
|
getUser?: {
|
|
|
|
getLoggedInUser?: {
|
|
|
|
__typename?: "UserGQL";
|
|
|
|
__typename?: "UserGQL";
|
|
|
|
following?: Array<{
|
|
|
|
following?: Array<{
|
|
|
|
__typename?: "UserGQL";
|
|
|
|
__typename?: "UserGQL";
|
|
|
@@ -5527,8 +5527,8 @@ export type UnfollowUserMutationOptions = Apollo.BaseMutationOptions<
|
|
|
|
UnfollowUserMutationVariables
|
|
|
|
UnfollowUserMutationVariables
|
|
|
|
>;
|
|
|
|
>;
|
|
|
|
export const GetUserFollowingFollowersDocument = gql`
|
|
|
|
export const GetUserFollowingFollowersDocument = gql`
|
|
|
|
query getUserFollowingFollowers($userId: Int!) {
|
|
|
|
query getUserFollowingFollowers {
|
|
|
|
getUser(userId: $userId) {
|
|
|
|
getLoggedInUser {
|
|
|
|
following {
|
|
|
|
following {
|
|
|
|
id
|
|
|
|
id
|
|
|
|
username
|
|
|
|
username
|
|
|
@@ -5553,12 +5553,11 @@ export const GetUserFollowingFollowersDocument = gql`
|
|
|
|
* @example
|
|
|
|
* @example
|
|
|
|
* const { data, loading, error } = useGetUserFollowingFollowersQuery({
|
|
|
|
* const { data, loading, error } = useGetUserFollowingFollowersQuery({
|
|
|
|
* variables: {
|
|
|
|
* variables: {
|
|
|
|
* userId: // value for 'userId'
|
|
|
|
|
|
|
|
* },
|
|
|
|
* },
|
|
|
|
* });
|
|
|
|
* });
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
export function useGetUserFollowingFollowersQuery(
|
|
|
|
export function useGetUserFollowingFollowersQuery(
|
|
|
|
baseOptions: Apollo.QueryHookOptions<
|
|
|
|
baseOptions?: Apollo.QueryHookOptions<
|
|
|
|
GetUserFollowingFollowersQuery,
|
|
|
|
GetUserFollowingFollowersQuery,
|
|
|
|
GetUserFollowingFollowersQueryVariables
|
|
|
|
GetUserFollowingFollowersQueryVariables
|
|
|
|
>,
|
|
|
|
>,
|
|
|
|