Return id for cache;
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-10-31 01:56:34 -06:00
parent 05e3182e8b
commit de9e7dea6a
2 changed files with 37 additions and 4 deletions

View File

@@ -91,11 +91,14 @@ query GetUserTags {
mutation followUser($followedUserId: Int!) {
followUser(followedUserId: $followedUserId) {
username
id
following {
id
username
}
followers {
id
username
}
}
}
@@ -103,17 +106,21 @@ mutation followUser($followedUserId: Int!) {
mutation unfollowUser($followedUserId: Int!) {
unfollowUser(followedUserId: $followedUserId) {
username
id
following {
id
username
}
followers {
id
username
}
}
}
query getUserFollowingFollowers {
getLoggedInUser {
id
following {
id
username