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.

Star
Habitable Planet
Hot Jupiter
Super-Earth
Neptune-like
Rocky
Atmosphere
This demo contains ~27 real host stars, ~50 confirmed exoplanets, and ~15 JWST/Hubble/Spitzer atmosphere detections. Planets are connected to their host stars via ORBITS edges, atmosphere observations via HAS_ATMOSPHERE edges, and nearby stars (<20 ly) are connected via NEARBY edges. All data sourced from the NASA Exoplanet Archive and published JWST Early Release Science results.

Live Query Panel

NASA Exoplanets
Live query demo — connecting to xrayGraphDB at xraygraphdb.emtailabs.com

A 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.

Tumor Suppressor
Oncogene
Kinase
Apoptosis
DNA Repair
Signaling
Transcription
This demo uses real protein interaction patterns from the STRING database schema. In production, xrayGraphDB can ingest the full STRING dataset (67M interactions across 14,000+ organisms) and answer multi-hop traversal queries in milliseconds — something traditional graph databases struggle with beyond 3 hops.

Demo Queries

Find TP53 interaction network
MATCH (p:Protein {name: "TP53"})-[r:INTERACTS_WITH]->(n)
RETURN p.name, n.name, r.score ORDER BY r.score DESC
Multi-hop influence (xrayGraphDB advantage: 10+ hops, no degradation)
MATCH path = (p:Protein {name: "TP53"})-[:INTERACTS_WITH*1..5]->(n)
RETURN DISTINCT n.name, length(path) AS hops
High-confidence clusters
MATCH (p)-[r:INTERACTS_WITH]->(n)
WHERE r.score > 900
RETURN p.name, n.name, r.score
Drug target discovery
MATCH (drug_target)-[:INTERACTS_WITH*1..4]->(disease_protein)
WHERE disease_protein.name = "BRCA1"
RETURN DISTINCT drug_target.name
AI-native semantic search (xrayGraphDB exclusive)
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 xrayGraphDB
Live query demo — connecting to xrayGraphDB at xraygraphdb.emtailabs.com

A financial transaction network showing accounts, transfers, and suspicious activity patterns. Red edges indicate flagged transactions. Graph traversal reveals hidden fraud rings.

Personal Account
Business Account
Suspicious Account
Shell Company

Build Your Own Graph Visualizations

xrayGraphDB + any graph visualization library. Start with Docker in 30 seconds.

Get Started See Benchmarks