OBJECT
Notification
link GraphQL Schema definition
- type Notification implements Node {
- : ID!
- # The type of notification.
- : NotificationNotificationType!
- # The type of resource that the notification is for.
- : String!
- # The ID of the resource that the notification is for.
- : String!
- # (DEPRECATED - Use body instead) The message of the notification.
- : String!
- # The body of the notification. This is the fully rendered message minus the
- # user's name
- # ie. liked your post "Test Post"
- # or reflected on your post "Test Post"
- : String!
- # The time that the notification was read.
- : Time
- : Time!
- : Time
- : ID
- # The user that the notification is for.
- : User
- # The user that sent the notification.
- : User
- # The image associated with the notification.
- : Image
- }