{% extends "base.html" %} {% block content %}

Nodes

{{ node_list.graph.display_name }}

Browse nodes in this graph, inspect stored metadata, and create new records with schema-validated JSON data.

Back to overview Schemas {% if current_user.is_owner %} New node {% endif %}

Browse summary

{% set form_action = web_app.url_path_for('graph_node_list_page', graph_id=node_list.graph.id) %} {% set filter_kind = 'node' %} {% include 'partials/list_filter_panel.html' %}

Results

Node list

{% if current_user.is_owner %} New node {% endif %}
{% for node in node_list["items"] %}

{{ node.name or node.id }}

{{ node.type }}

Schema
{{ node.schema_name or "none" }}
Parent
{{ node.parent_id or "none" }}
Payload
{{ node.payload_size }} bytes
Version
{{ node.version }}
{% if node.tags %}

Tags: {{ node.tags | join(", ") }}

{% endif %}
Open {% if current_user.is_owner %} Edit {% endif %}
{% else %}

No nodes matched

Adjust the current filters or create the first node for this graph.

{% endfor %}
{% if previous_url or next_url %}
{% if previous_url %} Previous page {% endif %} {% if next_url %} Next page {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% include 'partials/filters_toggle_script.html' %} {% endblock %}