Constructors
Methods
Interfaces
Module Functions
Constructors
constructor
Parameters
Returns
Graph
Methods
start
Parameters
Input data to execute the graph
Execution context containing optional parameters
Returns
ExecutionResult
visualize
Parameters
File path where the visualization will be saved
Returns
Promise<void>
closeExecution
Parameters
Output stream of the execution to close
Returns
void
toJSON
Returns
string
cleanupAllExecutions
Returns
void
stopExecutor
Returns
void
getGraphId
Returns
string
destroy
Returns
void
Interfaces
ExecutionResult
Result of a single execution of the graph. It contains the output stream and the execution ID.Properties
variantName:string
outputStream: GraphOutputStream
executionId: string
ExecutionContext
Context for the single execution of the graph. It is used to pass optional parameters to the graph execution. It is not required to pass all of the parameters, only the ones that are needed.Properties
executionId?:string
Context for the single execution of the graph. It is used to pass optional parameters to the graph execution. It is not required to pass all of the parameters, only the ones that are needed.
userContext?: UserContextInterface
Context for the single execution of the graph. It is used to pass optional parameters to the graph execution. It is not required to pass all of the parameters, only the ones that are needed.
dataStoreContent?: { [x: string]: any; }
Module Functions
isDeclarativeGraphOptions
Parameters
Returns
boolean
toNativeMap
Parameters
Returns
any