Return username in follow unfollow
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
2024-10-27 19:18:57 -06:00
parent 79784faba1
commit 7c7be319d1
2 changed files with 6 additions and 20 deletions

View File

@@ -89,16 +89,12 @@ query GetUserTags {
mutation followUser($followedUserId: Int!) {
followUser(followedUserId: $followedUserId) {
followers {
username
}
username
}
}
mutation unfollowUser($followedUserId: Int!) {
unfollowUser(followedUserId: $followedUserId) {
followers {
username
}
username
}
}