Graph Explorer

Nodes: 0 Edges: 0
SQL
SELECT n.name, r.type, m.name
FROM nodes n
JOIN edges r ON r.source = n.id
JOIN nodes m ON m.id = r.target
WHERE n.type = 'Module'
ORDER BY count(r.id) DESC
LIMIT 25;
Cypher
MATCH (n:Module)-[r]->(m)
RETURN n.name, type(r), m.name
ORDER BY size((n)-->()) DESC
LIMIT 25

Same data. Same transaction. Two languages.

Click a node in the graph to see its properties

    Scout Agent

    Scanning data sources and discovering entities

    Analyst Agent

    Analyzing relationships and patterns

    Compliance Agent

    Validating against ontology rules

    Orchestrator

    Coordinating agent pipeline

    Report

    Generating knowledge graph summary