Add profile image for followers #152

Merged
loewy merged 2 commits from loewy/add-profile-image-for-followers into master 2024-12-19 17:36:45 -07:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit eb15f4f3b8 - Show all commits

View File

@ -3732,7 +3732,12 @@ export type GetUserRelationshipsMatchingQuery = {
__typename?: "UserRelationship";
toUserFollows: boolean;
toUserIsFollowedBy: boolean;
toUser: { __typename?: "UserGQL"; username: string; id: number };
toUser: {
__typename?: "UserGQL";
username: string;
profileImageUri?: string | null;
id: number;
};
}>;
};
};
@ -6442,6 +6447,7 @@ export const GetUserRelationshipsMatchingDocument = gql`
relationships {
toUser {
username
profileImageUri
id
}
toUserFollows

View File

@ -66,6 +66,7 @@ query getUserRelationshipsMatching(
relationships {
toUser {
username
profileImageUri
id
}
toUserFollows