ENUM

RunMode

link GraphQL Schema definition

1enum RunMode {
2
3# This will run 24x7 from start to stop
4Continuous
5
6# This will run on a recurring schedule or interval
7Recurring
8
9# This will run once and then be complete
10Once
11
12# This will run now
13Now
14}