Closed
Description
What would you like to be added:
The $workflow
and $task
arguments are mentioned in the DSL but their contents are never specified. We should clarify this:
$workflow
$workflow.definition
... the workflow definition as a parsed object$workflow.input
... the input of the workflow BEFORE theinput.from
expression was applied. For the result of theinput.from
expression use the$input
argument$workflow.startedAt
... an object with the propertiesiso8601
,epochMillis
andepochNanos
to represent the execution start time$workflow.id
... the unique id of the execution
$task
$task.definition
... the task definition (object under the name) as a parsed object$task.input
... the input of the workflow BEFORE theinput.from
expression was applied. For the result of theinput.from
expression use the context.
of the expression$task.startedAt
... an object with the propertiesiso8601
,epochMillis
andepochNanos
to represent the task start time$task.name
... the unique name of the task
Why is this needed:
Open Questions:
Should the .input
properties be the result of the input.from
expression or the raw input to avoid duplication?
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done