diff --git a/src/index.tsx b/src/index.tsx index ae0cd9d..5094779 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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 } } } diff --git a/src/operations/user.gql b/src/operations/user.gql index 71489ec..85993a4 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -117,10 +117,12 @@ query getUserFollowingFollowers { following { id username + profileImageUri } followers { id username + profileImageUri } } }