Examples of using variables and Jinja-style templating in Intelligent App queries.
{% if ... %}
blocks to prevent SQL errors when variables are empty or unset.{{ variable }}
: Insert variable value{% if ... %} ... {% endif %}
: Conditional blocks{% for ... %} ... {% endfor %}
: Loops (for advanced use)| join(", ")
for lists