forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphql-object.html
More file actions
29 lines (26 loc) · 692 Bytes
/
Copy pathgraphql-object.html
File metadata and controls
29 lines (26 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<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>