Use getUser for getting followers
All checks were successful
Tests / Tests (pull_request) Successful in 8s

This commit is contained in:
2024-10-30 16:18:25 -06:00
parent 8690e81029
commit 9d8155527d
2 changed files with 8 additions and 10 deletions

View File

@@ -112,9 +112,8 @@ mutation unfollowUser($followedUserId: Int!) {
}
}
query getUserFollowingFollowers {
getLoggedInUser {
id
query getUserFollowingFollowers($userId: Int!) {
getUser(userId: $userId) {
following {
id
username