1
0
mirror of synced 2025-12-21 19:06:49 -05:00
Files
docs/includes/graphql-arguments.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

13 lines
551 B
HTML

{% if field.arguments %}
<div class="border rounded-1 mt-3 mb-3 p-3 bg-gray-light f5">
<p><b>{{ site.data.ui.products.graphql.reference.arguments }}</b></p>
{% for arg in arguments %}
<div class="border-top mt-2">
<p class="mt-2"><code>{{ arg.name }}</code> (<code><a href="/{{ currentLanguage }}{{ arg.type.href }}">{{ arg.type.name }}</a></code>)</p>
<p>{{ arg.description }}</p>
{% if arg.defaultValue or arg.defaultValue == false %}<p>The default value is <code>{{ arg.defaultValue }}</code>.</p>{% endif %}
</div>
{% endfor %}
</div>
{% endif %}