ActivityReplySubscribedNotification
Notification for when a user replies to activity the authenticated user has replied to
type ActivityReplySubscribedNotification {
  id: Int!
  userId: Int!
  type: NotificationType
  activityId: Int!
  context: String
  createdAt: Int
  activity: ActivityUnion
  user: User
}
Fields
ActivityReplySubscribedNotification.id ● Int! non-null scalar
The id of the Notification
ActivityReplySubscribedNotification.userId ● Int! non-null scalar
The id of the user who replied to the activity
ActivityReplySubscribedNotification.type ● NotificationType enum
The type of notification
ActivityReplySubscribedNotification.activityId ● Int! non-null scalar
The id of the activity which was replied too
ActivityReplySubscribedNotification.context ● String scalar
The notification context text
ActivityReplySubscribedNotification.createdAt ● Int scalar
The time the notification was created at
ActivityReplySubscribedNotification.activity ● ActivityUnion union
The liked activity
ActivityReplySubscribedNotification.user ● User object
The user who replied to the activity
Implemented By
NotificationUnion union