Rows and joins vs a live fraud graph

Keep PostgreSQL (or any OLTP store) as the system of record. Use JetGraph when relationship traversal and precomputed graph features dominate the authorize path.

ScenarioPostgreSQLJetGraph
Primary-key row lookupIdealUnnecessary overhead
Multi-hop relationshipsExpensive recursive joinsNative adjacency
Real-time velocityAggregate queries or extra tablesO(1) pre-computed rings
Durable system of recordIdealUse upstream store; JetGraph snapshots the working graph
Pattern detection across a networkComplex SQLCypher + feature APIs

This table is the same honest split used in the developer documentation. JetGraph is not “Postgres but faster for SELECT *.”