Passing Variables
Before going into each workflow component/node, it's important to understand how variables are passed between nodes.
Each node will output a JSON object. To reference specific output from a previous node, you can use dot notation.
Take the following example where we define an email subject in a code node and want to reference it in the built-in Gmail: Send Email Integration.

The code node outputs:
In the Gmail integration node, we can set the Subject variable to be
{{email_subject.data.results}}
This sets "Email from Orchestra" to be the Subject of the email.
For examples of how to pass variables between nodes, see the workflow examples in the workflow library.
Last updated