1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/includes/graphql-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

26 lines
792 B
HTML

<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 field in fields %}
<tr>
<td><p><code>{{ field.name }}</code> (<code><a href="/{{ currentLanguage }}{{ field.href }}">{{ field.type }}</a></code>)</p></td>
<td><p>{% if field.description %}{{ field.description }}{% else %}N/A{% endif %}</p>
{% if field.defaultValue or field.defaultValue == false %}<p>The default value is <code>{{ field.defaultValue }}</code>.</p>{% endif %}
{% assign item = field %}
{% include graphql-preview %}
{% include graphql-deprecation %}
{% assign arguments = field.arguments %}
{% include graphql-arguments %}
</td>
</tr>
{% endfor %}
</tbody>
</table>