Interactive Demos
Explore 3D graph visualizations powered by real-world datasets. Rotate, zoom, and click nodes to inspect properties.
Real exoplanet data from the NASA Exoplanet Archive and JWST atmospheric detections. This demo shows how xrayGraphDB handles multi-dimensional scientific queries — combining stellar properties, planetary parameters, and atmospheric composition in real-time graph traversals that would require complex JOIN chains in traditional databases.
Live Query Panel
NASA ExoplanetsA protein-protein interaction network modeled on the STRING database schema, showing ~50 real human proteins from cancer signaling, DNA repair, and apoptosis pathways. Edge thickness reflects STRING-db confidence scores (0-999). Hover over edges to see interaction type and confidence.
Demo Queries
MATCH (p:Protein {name: "TP53"})-[r:INTERACTS_WITH]->(n)
RETURN p.name, n.name, r.score ORDER BY r.score DESC
MATCH path = (p:Protein {name: "TP53"})-[:INTERACTS_WITH*1..5]->(n)
RETURN DISTINCT n.name, length(path) AS hops
MATCH (p)-[r:INTERACTS_WITH]->(n)
WHERE r.score > 900
RETURN p.name, n.name, r.score
MATCH (drug_target)-[:INTERACTS_WITH*1..4]->(disease_protein)
WHERE disease_protein.name = "BRCA1"
RETURN DISTINCT drug_target.name
MATCH (p:Protein)
WITH p, EMBED(p.function) AS vec
RETURN p.name, p.function
ORDER BY cosine_similarity(vec, EMBED("DNA repair")) DESC LIMIT 10
Live Query Panel
Connected to xrayGraphDBA financial transaction network showing accounts, transfers, and suspicious activity patterns. Red edges indicate flagged transactions. Graph traversal reveals hidden fraud rings.