INPUT_OBJECT

CreateEvent

link GraphQL Schema definition

1input CreateEvent {
4
2# Name of the event to be created
3eventName: String!
7
5# The type of event
6eventType: String!
11
8# Identifier of the app using the event. Using "system" as application will throw
9# error
10application: String!
14
12# Event visibility. Private event is only visible to the app publisher.
13public: Boolean!
17
15# General description of the event
16description: String
21
18# Optional schema. Accept on Protocol buffer format. If not provided,
19# Custom message schema is inferred
20schemaData: String
22}