Transforms a Python script into a directed acyclic graph (DAG).
glue_get_dataflow_graph(PythonScript)
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"
)
)
)
The Python script to transform.
svc$get_dataflow_graph(
PythonScript = "string"
)