diff --git a/src/index.tsx b/src/index.tsx index ae0cd9d..2595bb7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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; + }; }>; }; }; @@ -3803,11 +3808,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; }; @@ -6440,6 +6447,7 @@ export const GetUserRelationshipsMatchingDocument = gql` relationships { toUser { username + profileImageUri id } toUserFollows @@ -6713,10 +6721,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..8c02d88 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -66,6 +66,7 @@ query getUserRelationshipsMatching( relationships { toUser { username + profileImageUri id } toUserFollows @@ -117,10 +118,12 @@ query getUserFollowingFollowers { following { id username + profileImageUri } followers { id username + profileImageUri } } }