add profile image to user relationship
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
Loewy 2024-12-19 16:33:48 -08:00
parent 82ff8546d4
commit eb15f4f3b8
2 changed files with 8 additions and 1 deletions

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