@Patch I think that’s what I will end up doing.
@Davide the latest version (20.9.51) is exposing almost all the data in the database. To see what global variables are available, create report with just {{ globals }}
which will reveal list of top-level global variables.
Most of them are enumerable which means you would use them such as:
{% for e in customers %}
{{ e.Name }}<br />
{% endfor %}
To discover what fields are available, there is new fields
filter which can be applied to individual object.
E.g.
{{ customers | first | fields }}
Will show
So this way you can use reflection on your variables to see what’s available without referring to documentation.