INPUT_OBJECT

CreateEvent

link GraphQL Schema definition

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