add profile image to user relationship
All checks were successful
Tests / Tests (pull_request) Successful in 9s
All checks were successful
Tests / Tests (pull_request) Successful in 9s
This commit is contained in:
parent
82ff8546d4
commit
eb15f4f3b8
@ -3732,7 +3732,12 @@ export type GetUserRelationshipsMatchingQuery = {
|
|||||||
__typename?: "UserRelationship";
|
__typename?: "UserRelationship";
|
||||||
toUserFollows: boolean;
|
toUserFollows: boolean;
|
||||||
toUserIsFollowedBy: 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 {
|
relationships {
|
||||||
toUser {
|
toUser {
|
||||||
username
|
username
|
||||||
|
profileImageUri
|
||||||
id
|
id
|
||||||
}
|
}
|
||||||
toUserFollows
|
toUserFollows
|
||||||
|
@ -66,6 +66,7 @@ query getUserRelationshipsMatching(
|
|||||||
relationships {
|
relationships {
|
||||||
toUser {
|
toUser {
|
||||||
username
|
username
|
||||||
|
profileImageUri
|
||||||
id
|
id
|
||||||
}
|
}
|
||||||
toUserFollows
|
toUserFollows
|
||||||
|
Loading…
Reference in New Issue
Block a user