Update get user and following response
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2024-10-25 01:27:14 -06:00
parent f6f6404302
commit 24d9b9225e
2 changed files with 10 additions and 10 deletions

View File

@@ -341,9 +341,9 @@ type SerializedShotPathsGQL {
type UserGQL {
id: Int!
firebaseUid: String!
firebaseUid: String
username: String!
isAdmin: Boolean!
isAdmin: Boolean
fargoRating: Int
activeVideoId: Int
profileImageUri: String
@@ -555,7 +555,7 @@ input CreatedAfter @oneOf {
}
type UsernamesAndFollowingResponse {
usernamesAndIds: [UserGQL!]!
users: [UserGQL!]!
following: [Int!]!
followers: [Int!]!
}