Analysis steps applied to the provided data
+ Create tool
on the top right of the page.
You will be presented with an empty state where you can:
{{steps.step_name.output.variable_name}}
to reference it. It can be changed just like the inputs.Output
button on the top right of the step and you can see what outputs have already been configured.
x
on the bottom right of each output+ Add new output key
located under the last output key{{Name-of-the-available-variable}}
, for instance {{transformed}}
Move a step in a Tool
Move a step in a Tool
{{}}
. For instance,
{{text==="XYZ"}}
--> the variable called text
is equal to XYZ
{{text!=="XYZ"}}
--> the variable called text
is not equal to XYZ
{{clean.transformed===""}}
--> the output of a code step called clean
is an empty stringRun this transformation multiple times
, provide the list of items on which the loop should work.
Next, use {{foreach.item}}
to access each of the elements in your input list.
Screenshot of the Loop input in a step