Input objects

In this section

About input objects

Input objects can be described as "composable objects" because they include a set of input fields that define the object.

{% for io in reference.input_objects %}

{{ io.name }}

{{ io.description|default('', True)|markdown|safe }}

Input fields

{% for name, field in io.fields.items() %} {% endfor %}
Name Description

{{ name }} ({{ field.type|string }})

{{ field.description|default('', True)|markdown|safe }}


{% endfor %}