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-arguments.html 551 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
  1. {% if field.arguments %}
  2. <div class="border rounded-1 mt-3 mb-3 p-3 color-bg-secondary f5">
  3. <p><b>{% data ui.products.graphql.reference.arguments %}</b></p>
  4. {% for arg in arguments %}
  5. <div class="border-top mt-2">
  6. <p class="mt-2"><code>{{ arg.name }}</code> (<code><a href="/{{ currentLanguage }}{{ arg.type.href }}">{{ arg.type.name }}</a></code>)</p>
  7. <p>{{ arg.description }}</p>
  8. {% if arg.defaultValue or arg.defaultValue == false %}<p>The default value is <code>{{ arg.defaultValue }}</code>.</p>{% endif %}
  9. </div>
  10. {% endfor %}
  11. </div>
  12. {% endif %}
Tip!

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

Comments

Loading...