Compare commits

..

No commits in common. "bf8e851139e2b717e116e2329e89a3302eca9379" and "284334606d5ea75ad6f9fee0c2004d19eff05341" have entirely different histories.

2 changed files with 1 additions and 14 deletions

View File

@ -3732,12 +3732,7 @@ export type GetUserRelationshipsMatchingQuery = {
__typename?: "UserRelationship"; __typename?: "UserRelationship";
toUserFollows: boolean; toUserFollows: boolean;
toUserIsFollowedBy: boolean; toUserIsFollowedBy: boolean;
toUser: { toUser: { __typename?: "UserGQL"; username: string; id: number };
__typename?: "UserGQL";
username: string;
profileImageUri?: string | null;
id: number;
};
}>; }>;
}; };
}; };
@ -3808,13 +3803,11 @@ export type GetUserFollowingFollowersQuery = {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null;
}> | null; }> | null;
followers?: Array<{ followers?: Array<{
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
username: string; username: string;
profileImageUri?: string | null;
}> | null; }> | null;
} | null; } | null;
}; };
@ -6447,7 +6440,6 @@ export const GetUserRelationshipsMatchingDocument = gql`
relationships { relationships {
toUser { toUser {
username username
profileImageUri
id id
} }
toUserFollows toUserFollows
@ -6721,12 +6713,10 @@ export const GetUserFollowingFollowersDocument = gql`
following { following {
id id
username username
profileImageUri
} }
followers { followers {
id id
username username
profileImageUri
} }
} }
} }

View File

@ -66,7 +66,6 @@ query getUserRelationshipsMatching(
relationships { relationships {
toUser { toUser {
username username
profileImageUri
id id
} }
toUserFollows toUserFollows
@ -118,12 +117,10 @@ query getUserFollowingFollowers {
following { following {
id id
username username
profileImageUri
} }
followers { followers {
id id
username username
profileImageUri
} }
} }
} }