INPUT_OBJECT

CreateTriggers

link GraphQL Schema definition

1input CreateTriggers {
9
2# List of events in csv form. Use "*" to listen to all events. When using a wild
3# card, csv form is no longer valid.
4# Either events or types can be specified at a time. Example:
5# events: "event1,event2,event3" // valid
6# events: "*" // valid
7# events: "*,event1" // invalid
8events: String
17
10# List of events in csv form. Use "*" to listen to all types. When using a wild
11# card, csv form is no longer valid.
12# Either events or types can be specified at a time. Example:
13# types: "type1,type2,type3" // valid
14# types: "*" // valid
15# types: "*,type1" // invalid
16types: String
20
18# Array of hook targets
19targets: [CreateTriggerType]
21}