OBJECT

FlowExecution

link GraphQL Schema definition

1type FlowExecution {
2
3# The id of the execution
4flowExecutionId: ID!
5
6# The id of the associated flow
7flowId: ID!
8
9# The id of the associated revision
10flowRevisionId: ID
11
12# The id of the organization used
13organizationId: String!
14
15# Auto generated timestamp on creation
16createdDateTime: DateTime!
17
18# Auto generated timestamp on update
19updatedDateTime: DateTime
20
21# The status of the execution after completion
22flowExecutionStatus: String
23
24# The url to the result file or single string of text
25flowExecutionResult: String
26
27# The url to the log file
28flowExecutionLog: String
29
30# The url or string of flow input
31flowExecutionInput: String
32
33# The authed user during execution creation
34userId: ID
35
36}