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

View File

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