Followers and following
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-10-29 15:46:16 -06:00
parent 4d01e9814d
commit 148f5362f0
2 changed files with 36 additions and 2 deletions

View File

@@ -91,11 +91,23 @@ query GetUserTags {
mutation followUser($followedUserId: Int!) {
followUser(followedUserId: $followedUserId) {
username
following {
id
}
followers {
id
}
}
}
mutation unfollowUser($followedUserId: Int!) {
unfollowUser(followedUserId: $followedUserId) {
username
following {
id
}
followers {
id
}
}
}