Graph Explorer

Nodes: 0 Edges: 0
SQL
SELECT p.name, c.code, c.description
FROM patients p
JOIN encounters e ON e.patient_id = p.id
JOIN conditions c ON c.encounter_id = e.id
WHERE c.system = 'ICD-10'
AND e.date >= '2025-01-01'
LIMIT 25;
Cypher
MATCH (p:Patient)-[:HAS_ENCOUNTER]->(e)
      -[:DIAGNOSED_WITH]->(c:Condition)
WHERE c.system = 'ICD-10'
  AND e.date >= '2025-01-01'
RETURN p.name, c.code, c.description
LIMIT 25

Same data. Same transaction. Two languages.

Click a node in the graph to see its properties

    Loading ontology schema...

    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