1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/includes/graphql-return-fields.html
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

23 lines
694 B
HTML

<h4>{{ site.data.ui.products.graphql.reference.return_fields }}</h4>
<table class="fields width-full">
<thead>
<tr>
<th>{{ site.data.ui.products.graphql.reference.name }}</th>
<th>{{ site.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>