From 00061a9356e402b632dd334547b340afd374a6f1 Mon Sep 17 00:00:00 2001 From: Matthias Pichler Date: Thu, 29 Aug 2024 17:31:17 +0200 Subject: [PATCH] Update dsl.md Co-authored-by: Ricardo Zanini <1538000+ricardozanini@users.noreply.github.com> --- dsl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl.md b/dsl.md index ab7a5cdb..efdfef70 100644 --- a/dsl.md +++ b/dsl.md @@ -187,7 +187,7 @@ The input data for the task can be transformed to match the specific requirement *Example: If the task is a function call that only needs a subset of the workflow input, a transformation can be applied to provide only those fields needed for the function to execute.* 5. **Transform Task Output** -After completing the task, its output can be transformed before passing it to the next task or storing it in the workflow context. Transformations are applied using the `output.as` runtime expression. It evaluates on the raw task output and defaults to the identity expression, which leaves the output unchanged. Its result will be input for the next task. +After completing the task, its output can be transformed before passing it to the next task or storing it in the workflow context. Transformations are applied using the `output.as` runtime expression. It evaluates the raw task output and defaults to the identity expression, which leaves the output unchanged. Its result will be input for the next task. *Example: If the task returns a large dataset, a transformation can be applied to retain only the relevant results needed for subsequent tasks.*