INPUT_OBJECT

UpsertEvent

link GraphQL Schema definition

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