INPUT_OBJECT

EventSubscriptionInput

link GraphQL Schema definition

1input EventSubscriptionInput {
4
2# ID of the event
3id: ID
7
5# action to be taken on the event
6action: EventAction
10
8# Existing event name
9eventName: String
13
11# Existing event type
12eventType: String
16
14# a string payload, it should be serialized Protobuf data with base64 encoding
15delivery: EventDelivery
49
17# The conditions to filter the event. An example of what the conditions object
18# should look like, note that the root "operator" value __must__ be either
19# __"and"__ or __"or"__:
20# {
21#
22# "operator": "and",
23#
24# "conditions": [
25#
26# {
27#
28# "operator": "term",
29#
30# "field": "trackingUnitName",
31#
32# "value": "Dallas Cowboys Super Bowl"
33#
34# },
35#
36# {
37#
38# "operator": "term",
39#
40# "field": "mentionStatusId",
41#
42# "value": "1"
43#
44# }
45#
46# ]
47# }
48conditions: JSONData
52
50# The event subscription scope
51scope: EventSubscriptionScope
53}