Referencing data
If you enter
{{
, you can check the result data of previous tasks. 
Please click on Test in the Assistant section to use the autocomplete feature.
We do not support autocomplete feature for MySQL, SQL Server, MariaDB, PostgreSQL, MongoDB. Please type as shown below to use the result data in databases.
{{task.value}}
i.e. {{a.user_email}}
- Data type: pay attention to the data type of the data you wish to use. To use data in string or date form in Query or Script, make sure to enter 'value' (single quotes).
Data type = number
i.e. SELECT * FROM user WHERE active = {{a.active}}
Data type = string/date
i.e. SELECT * FROM user WHERE location = '{{a.location}}'
Last modified 7mo ago