INPUT_OBJECT

NotificationMailboxInput

link GraphQL Schema definition

1input NotificationMailboxInput {
3
2name: String!
6
4# The conditions to filter the event - same structure as subcribeEvent mutation
5eventFilter: EventFilterInput!
10
7# Handlebar template for transforming the event to a
8# notification
9notificationTemplate: String!
13
11# Set maximum number of notifications the mailbox can contain
12limit: Int
16
14# Mailbox details with optional json data
15details: JSONData
19
17# Only use for internal/orgless token (optional)
18userId: ID
22
20# Only use for internal/orgless token (optional)
21orgId: ID
23}