OBJECT

Notification

link GraphQL Schema definition

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