Get user following followers
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-10-29 23:36:37 -06:00
parent eec79b2dc5
commit 249807c935
2 changed files with 116 additions and 0 deletions

View File

@@ -111,3 +111,17 @@ mutation unfollowUser($followedUserId: Int!) {
}
}
}
query getUserFollowingFollowers {
getLoggedInUser {
id
following {
id
username
}
followers {
id
username
}
}
}