Transforms a Python script into a directed acyclic graph (DAG).
glue_get_dataflow_graph(PythonScript)
The Python script to transform.
A list with the following syntax:
list( DagNodes = list( list( Id = "string", NodeType = "string", Args = list( list( Name = "string", Value = "string", Param = TRUE|FALSE ) ), LineNumber = 123 ) ), DagEdges = list( list( Source = "string", Target = "string", TargetParameter = "string" ) ) )
svc$get_dataflow_graph( PythonScript = "string" )