INPUT_OBJECT
EventSubscriptionInput
link GraphQL Schema definition
1 input EventSubscriptionInput { 4 2 #   ID of the event 3 : ID 7 5 #   action to be taken on the event 6 : EventAction 10 8 #   Existing event name 9 : String 13 11 #   Existing event type 12 : String 16 14 #   a string payload, it should be serialized Protobuf data with base64 encoding 15 : 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 #   } 48 : JSONData 52 50 #   The event subscription scope 51 : EventSubscriptionScope 53 }