Merge pull request 'Add following followers to user model' (#81) from kat/following-followers into master

Reviewed-on: #81
This commit is contained in:
2024-10-22 00:12:59 -06:00
2 changed files with 16 additions and 0 deletions

View File

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