INPUT_OBJECT

NotificaionPostInput

link GraphQL Schema definition

1input NotificaionPostInput {
4
2# Recepient mailbox/user/organization ids
3mailboxIds: [ID]
7
5# The title of notification
6title: String
10
8# This can be encrypted string, json, html
9body: String!
13
11# Hint what/how the body is encoded
12contentType: String!
16
14# The applicationId of notification
15application: String
18
17flags: [NotificationFlag!]
21
19# Event name of notification (optional)
20eventName: String
24
22# Event type of notification (optional)
23eventType: String
27
25# This flag indicates whether the notification is persistent or not.
26ephemeral: Boolean
28}