Add following followers to user model
All checks were successful
Tests / Tests (pull_request) Successful in 7s

This commit is contained in:
2024-10-21 12:07:01 -06:00
parent b9036001aa
commit 163c6a4e0c
2 changed files with 16 additions and 0 deletions

View File

@@ -342,6 +342,8 @@ type UserGQL {
profileImageUri: String
createdAt: DateTime
updatedAt: DateTime
following: [Int!]
followers: [Int!]
}
type ShotAnnotationGQL {
@@ -594,6 +596,8 @@ type Mutation {
): GetProfileUploadLinkReturn!
editProfileImageUri(profileImageUri: String!): UserGQL!
editUser(input: EditUserInputGQL!): UserGQL!
followUser(followedUserId: Int!): UserGQL!
unfollowUser(followedUserId: Int!): UserGQL!
createUploadStream(
videoMetadata: VideoMetadataInput!
): CreateUploadStreamReturn!