OBJECT
Notification
link GraphQL Schema definition
1 type Notification { 2 3 : ID! 4 5 # This can be encrypted string, json, html 6 : String 7 8 # The title of notification 9 : String 10 11 # Hint what/how the body is encoded 12 : String 13 14 # Event type of notification 15 : String 16 17 # Event name of notification 18 : String 19 20 # The applicationId of notification 21 : String 22 23 # If states are exclusive then this can be just NotificationState 24 : [NotificationFlag!] 25 26 # Dates tracked internally 27 : DateTime 28 29 : DateTime 30 31 : DateTime 32 33 }