FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github-docs/includes/graphql-fields.html at main · 0xdevalias/github-docs · GitHub
0xdevalias
/
github-docs
Public
forked from
github/docs
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
github-docs
/
includes
/
graphql-fields.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (23 loc) · 782 Bytes
Breadcrumbs
github-docs
/
includes
/
graphql-fields.html
Copy path
File metadata and controls
25 lines (23 loc) · 782 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<
table
class
="
fields width-full
"
>
<
thead
>
<
tr
>
<
th
>
{% data ui.products.graphql.reference.name %}
</
th
>
<
th
>
{% 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
>
Back
|
FazBrowse Home
|
New Git URL