{% extends "base.html" %} {% block title %}TapDB Graph Explorer{% endblock %} {% block head %} {% endblock %} {% block content %} {% if euid %}

Graph: {{ euid }}

{% else %}

TapDB Graph Explorer

{% endif %} {% set graph_meta = graph.get("meta", {}) %}

Canonical DAG v2: persisted lineage only. Leave Start EUID blank to inspect the bounded graph visible to your database role.

{% if graph_meta.get("truncated") %}

Initial bounded result: {{ graph_meta.get("truncation_reason") }}

{% endif %}
Loading graph data...

📋 Details

No selection — click a node or edge to see details

Nodes and edges

Nodes

{% for node in graph.elements.nodes %} {% endfor %}
EUIDNameType
{{ node.data.euid }}{{ node.data.display_label }}{{ node.data.category }}/{{ node.data.type }}

Edges

{% for edge in graph.elements.edges %} {% endfor %}
EUIDParentChildType
{{ edge.data.euid }}{{ edge.data.source }}{{ edge.data.target }}{{ edge.data.relationship_type }}
Payload JSON
{{ graph | tojson(indent=2) }}
{% if user.role|lower == 'admin' %}

Create Lineage Edge

{% endif %} {% endblock %} {% block scripts %} {% endblock %}