Objects

In this section

About objects

Objects in GraphQL represent the resources you can access. An object can contain a list of fields, which are specifically typed.

{% for object in reference.objects %}

{{ object.name }}

{{ object.description|default('', True)|markdown|safe }}
{% if object.fields %}

Fields

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

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

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

{% endif %}
{% endfor %}