INPUT_OBJECT

CreateFlow

link GraphQL Schema definition

1input CreateFlow {
3
2id: ID
5
4name: String
7
6description: String
10
8# The engine category
9categoryId: ID
14
11# Optional application id for linked applications. This will be used to access
12# the default module pallete.
13linkedApplicationId: ID
22
15# Optional automate flow template id. Flow templates can be queried using the
16# flowTemplates call.
17# If left empty will be a blank flow. This must be an actual
18# template id such as '36' for 'Support Call Analytics Reporter'. An engineId will
19# not fail
20# but it will create a blank flow.
21templateId: ID
25
23# The engine deployment model. See the DeploymentModel enum for options.
24deploymentModel: String
28
26# JWT rights for engine, which is used for generating jwtToken rights later
27jwtRights: JSONData
31
29# packages containing automate resources(automateNode, automatePalette)
30packageIds: [String]
32}

link Required by

This element is not required by anyone