SELECT
COLUMS
{% for column in select.columns %}
- {% include './widget.expression.html.twig' with {'expression': column} %}
{% endfor %}
FROM
{% include './widget.from.html.twig' with {'from': select.from} %}
JOINS
{% for join in select.joins %}
- {% include './widget.join.html.twig' with {'join': join} %}
{% else %}
No joins yet
{% endfor %}
Filter
{% if select.where is not null %}
{% include './widget.where.html.twig' with {'where': select.where} %}
{% else %}
No filter yet
{% endif %}
Sorting
{% if select.orderBy is not null %}
{% include './widget.order-by.html.twig' with {'orderBy': select.orderBy} %}
{% else %}
No sorting yet
{% endif %}