1
0
mirror of synced 2025-12-20 10:28:40 -05:00
Files
docs/includes/graphql-return-fields.html
Jason Etcovitch caaee7a124 Update all files to use {% data %} (#15253)
* Add back changes from prior to purge

* Manually fix some invalid Liquid

* Updoot render-content

* Improve test messages to show correct output

* Run el scripto

* Pass the remaining test
2020-09-29 16:01:04 -04:00

23 lines
679 B
HTML

<h4>{% data ui.products.graphql.reference.return_fields %}</h4>
<table class="fields width-full">
<thead>
<tr>
<th>{% data ui.products.graphql.reference.name %}</th>
<th>{% data ui.products.graphql.reference.description %}</th>
</tr>
</thead>
<tbody>
{% for returnField in returnFields %}
<tr>
<td><p><code>{{ returnField.name }}</code> (<code><a href="/{{ currentLanguage }}{{ returnField.href }}">{{ returnField.type }}</a></code>)</p></td>
<td><p>{% if returnField.description %}{{ returnField.description }}{% else %}N/A{% endif %}</p>
{% assign item = returnField %}
{% include graphql-preview %}
{% include graphql-deprecation %}
</tr>
{% endfor %}
</tbody>
</table>