# | Time | Info | {% for idx, batch in graphql.batches %} {% set isCurrentToken = result.token == token %}
---|---|---|
{{ idx + 1}} | {{ (batch.queryTime*1000)|round(0) }} ms |
{% if batch.error is defined %}
{% if batch.error.location is defined %}
At line {{ batch.error.location.line}}, column {{ batch.error.location.column}}
{% endif %}
{% if batch.graphql.operation is defined %}
{% set operation = batch.graphql.operation %}
{% set operationName = batch.graphql.operationName %}
{% set fields = batch.graphql.fields %}
{% endif %} {{ batch.error.message }}
{{ operation }} {% if operationName %}{{ operationName }}(...){% endif %} {
{% for field in fields %}
{% endif %}
{% if isCurrentToken %}
{% if field.alias %}{{field.alias }}: {% endif %}{{ field.name}}(...)
{% endfor %}
}
Variables: {{ profiler_dump(batch.variables, maxDepth=2) }}
{{ profiler_dump(batch.result, maxDepth=3) }}
|
No GraphQL queries stored.
{{schema}}