OBJECT
FlowExecution
link GraphQL Schema definition
1 type FlowExecution { 2 3 # The id of the execution 4 : ID! 5 6 # The id of the associated flow 7 : ID! 8 9 # The id of the associated revision 10 : ID 11 12 # The id of the organization used 13 : String! 14 15 # Auto generated timestamp on creation 16 : DateTime! 17 18 # Auto generated timestamp on update 19 : DateTime 20 21 # The status of the execution after completion 22 : String 23 24 # The url to the result file or single string of text 25 : String 26 27 # The url to the log file 28 : String 29 30 # The url or string of flow input 31 : String 32 33 # The authed user during execution creation 34 : ID 35 36 # Run Mode context of where the flow was ran(Studio, Engine, Service, AUF, etc) 37 : String 38 39 }