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 6 additions and 0 deletions
Showing only changes of commit 82ff8546d4 - Show all commits

View File

@ -3803,11 +3803,13 @@ 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;
};
@ -6713,10 +6715,12 @@ export const GetUserFollowingFollowersDocument = gql`
following {
id
username
profileImageUri
}
followers {
id
username
profileImageUri
}
}
}

View File

@ -117,10 +117,12 @@ query getUserFollowingFollowers {
following {
id
username
profileImageUri
}
followers {
id
username
profileImageUri
}
}
}