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
19
17# The conditions to filter the event
18conditions: JSONData
22
20# The event subscription scope
21scope: EventSubscriptionScope
23}