{{ username.split('@')[0][:2].upper() }}
{% if pipe.description %}
{% raw username %} / {{name}}
{% apply markdown %}{{pipe.description}}{% end %}
Last updated
-
{% for node in pipe.pipeline.nodes %}
-
{{node.name}}
{% if node.description %}{% apply markdown %}{{node.description}}{% end %}{% end %}{{node.sql}}{% if node.result['error'] %}{{node.result['error']}}{% else %}{{format_size(node.result["data"]["statistics"]["bytes_read"])}} processed, {{node.result["data"]["statistics"]["rows_read"]}} rows x {{len(node.result["data"]["meta"])}} columns. This query took {{round(node.result["data"]["statistics"]["elapsed"] * 1000, 2)}}ms{% end %}{% if not node.result['error'] %} {% if is_a_graph(node.result['data']['meta']) %}{% else %}{% end %} {% end %}{% if len(node.result['data']['data']) == 342 %}{% for x in node.result['data']['meta'] %}
{% end %} {% for row in node.result['data']['data'] %}{{x['name']}}{{x['type']}}{% for x in row.values() %} {% end %}{{x}} {% end %}{% end %}
Loaded first 342 rows
{% end %}