* 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
30 lines
692 B
HTML
30 lines
692 B
HTML
<div>
|
|
<div>
|
|
<h3 id="{{ item.id }}" class="pt-3">
|
|
<a href="#{{ item.id }}">{{ item.name }}</a>
|
|
</h3>
|
|
{{ item.description }}
|
|
</div>
|
|
|
|
<div>
|
|
{% include graphql-preview %}
|
|
{% include graphql-deprecation %}
|
|
|
|
{% if item.implements %}
|
|
<h4>{% data ui.products.graphql.reference.implements %}</h4>
|
|
<ul>
|
|
{% for interface in item.implements %}
|
|
<li><code><a href="/{{ currentLanguage }}{{ interface.href }}">{{ interface.name }}</a></code></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if item.fields %}
|
|
<h4>{% data ui.products.graphql.reference.fields %}</h4>
|
|
{% assign fields = item.fields %}
|
|
{% include graphql-fields %}
|
|
{% endif %}
|
|
</div>
|
|
<hr>
|
|
</div>
|