FollowingNotification
Notification for when the authenticated user is followed by another user
type FollowingNotification {
id: Int!
userId: Int!
type: NotificationType
context: String
createdAt: Int
user: User
}
Fields
FollowingNotification.id
● Int!
non-null scalar
The id of the Notification
FollowingNotification.userId
● Int!
non-null scalar
The id of the user who followed the authenticated user
FollowingNotification.type
● NotificationType
enum
The type of notification
FollowingNotification.context
● String
scalar
The notification context text
FollowingNotification.createdAt
● Int
scalar
The time the notification was created at
FollowingNotification.user
● User
object
The liked activity
Implemented By
NotificationUnion
union