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
25
15# Optional automate flow template id. Flow templates can be queried using the
16# flowTemplates call.
17# By default, if templateId is not provided (or is left empty),
18# the engine will be created with the default flow "aiWare Workflow Base Template"
19# (id: "40b2b9b4-28bf-4e5e-b3e9-3c45dc40bb22").
20# This must be an actual
21# template id such as '36' for 'Support Call Analytics Reporter'. An engineId will
22# not fail
23# but it will create a blank flow.
24templateId: ID
28
26# The engine deployment model. See the DeploymentModel enum for options.
27deploymentModel: String
31
29# JWT rights for engine, which is used for generating jwtToken rights later
30jwtRights: JSONData
34
32# packages containing automate resources(automateNode, automatePalette)
33packageIds: [String]
37
35# This is specifically to get the node-red image related to the cluster.
36clusterId: String
38}

link Required by

This element is not required by anyone