Jinja Template Language
What is Jinja?
{
"name": "John",
"age": 35
}Hello {{ name }}!{% if age >= 30 %}
{{ name }} is 30 years or older.
{% else %}
{{ name }} is less than 30 years old.
{% endif %}
How Jinja is used in Locoia
1. Referencing to previous steps and connectors in a flow


2. Using functions and filters to format and change data
3. Adding advanced logic to flow steps which cannot be easily done with existing flow helpers
Filtering a list by a list
Further Information
Last updated
Was this helpful?