tags
Connection tags are visual representations of the data available from connected blocks. They provide an easy way to reference outputs from previous blocks in your workflow.
What Are Connection Tags?
Connection tags are interactive elements that appear when blocks are connected. They represent the data that can flow from one block to another and allow you to:
Visualize available data from source blocks
Reference specific data fields in destination blocks
Create dynamic data flows between blocks
Connection tags make it easy to see what data is available from previous blocks and use it in your current block without having to remember complex data structures.
Using Connection Tags
There are two primary ways to use connection tags in your workflows:
Drag and Drop
Click on a connection tag and drag it into input fields of destination blocks. A dropdown will appear showing available values.
Hover over a connection tag to see available data
Click and drag the tag to an input field
Select the specific data field from the dropdown
The reference is inserted automatically
Angle Bracket Syntax
Type <> in input fields to see a dropdown of available connection values from previous blocks.
Click in any input field where you want to use connected data
Type
<>to trigger the connection dropdownBrowse and select the data you want to reference
Continue typing or select from the dropdown to complete the reference
Tag Syntax
Connection tags use a simple syntax to reference data:
<blockId.path.to.data>Where:
blockIdis the identifier of the source blockpath.to.datais the path to the specific data field
For example:
<agent1.content>- References the content field from a block with ID "agent1"<api2.data.users[0].name>- References the name of the first user in the users array from the data field of a block with ID "api2"
Dynamic Tag References
Connection tags are evaluated at runtime, which means:
They always reference the most current data
They can be used in expressions and combined with static text
They can be nested within other data structures
Examples
When using connection tags in numeric contexts, make sure the referenced data is actually a number to avoid type conversion issues.
Was this helpful?
