SELECT

COLUMS

FROM

{% include './widget.from.html.twig' with {'from': select.from} %}

JOINS

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 %}