Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

graphql-fields.html 782 B

You have to be logged in to leave a comment. Sign In
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
  1. <table class="fields width-full">
  2. <thead>
  3. <tr>
  4. <th>{% data ui.products.graphql.reference.name %}</th>
  5. <th>{% data ui.products.graphql.reference.description %}</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. {% for field in fields %}
  10. <tr>
  11. <td><p><code>{{ field.name }}</code> (<code><a href="/{{ currentLanguage }}{{ field.href }}">{{ field.type }}</a></code>)</p></td>
  12. <td><p>{% if field.description %}{{ field.description }}{% else %}N/A{% endif %}</p>
  13. {% if field.defaultValue or field.defaultValue == false %}<p>The default value is <code>{{ field.defaultValue }}</code>.</p>{% endif %}
  14. {% assign item = field %}
  15. {% include graphql-preview %}
  16. {% include graphql-deprecation %}
  17. {% assign arguments = field.arguments %}
  18. {% include graphql-arguments %}
  19. </td>
  20. </tr>
  21. {% endfor %}
  22. </tbody>
  23. </table>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...