INPUT_OBJECT

CreateAppEventInput

link GraphQL Schema definition

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