← Back to Patent Claims
Patent Claim 154 All Patents →

Confidence-Gated Bidirectional Graph Traversal Over a Relational Evidentiary Store

Multi-source, bidirectional breadth-first traversal expressed as SQL over a relational store, excluding low-confidence relationships from the walk itself and bounding investigative blast radius with hard node and depth ceilings

Patent Claim JIL Sovereign July 2026 Claim 154 of 157

Executive Summary

JIL Sovereign's correlation graph stores entity relationships as rows in a relational table - source entity, target entity, relation type, and a confidence-rank value - and implements multi-source, bidirectional breadth-first traversal directly as SQL queries against that table, with no separate graph-database system in the architecture. Two properties distinguish the traversal itself from a conventional weighted-graph search.

First, edges below a specified confidence-rank threshold are excluded during each expansion step of the traversal, not merely filtered from the final result set - so a weak or ambiguous correlation cannot serve as a bridge that transitively pulls an otherwise-unrelated entity into an investigation's scope. Second, independent of whatever confidence threshold is configured, a fixed maximum traversal depth and a fixed maximum visited-node count are enforced architecturally, bounding both the computational cost and the investigative blast radius of any single traversal query.

Core Innovation: Low-confidence relationships are excluded from the traversal path itself during each expansion step - not filtered from a completed result set - so weak correlations cannot transitively pull unrelated entities into an investigation, and hard node/depth ceilings bound blast radius independent of the confidence threshold chosen, all expressed as SQL over the existing relational store with no separate graph database.

Problem Statement

Fraud, abuse, and clinical-correlation investigations frequently need to trace relationships between entities - claims, providers, members, events - several hops deep. Two common failure modes emerge in typical implementations. First, teams often reach for a dedicated graph database purely to support traversal queries, adding an entire second data store, a synchronization pipeline against the relational system of record, and a new axis of consistency drift between the two stores. Second, naive traversal algorithms treat every recorded relationship as equally trustworthy, so a single low-confidence or ambiguous relationship - a fuzzy name match, for instance - can pull an unrelated entity into an investigation's blast radius, while unbounded traversal depth or breadth can produce runaway queries and result sets so large they are impractical to review, and can improperly implicate parties whose only connection is several weak hops removed from any genuine signal.

Filtering weak relationships only after a traversal completes does not solve the second problem. A chain of relationships - strong, then weak, then strong again - can still connect two entities in the final result even when only the weak middle link made that path possible, unless the traversal itself is prevented from crossing that weak link in the first place.

0
Separate graph-database systems required
1
Relational table serving as both system of record and traversal substrate
2
Hard architectural ceilings bounding every traversal: max depth, max nodes

Why Common Approaches Fall Short

  • Dedicated graph databases (Neo4j, TigerGraph): provide native traversal primitives, but require a duplicated, separately-synchronized store alongside the relational system of record.
  • Weighted shortest-path algorithms: typically select the highest-confidence path between two points rather than architecturally excluding below-threshold edges from ever being walked at all.
  • Post-hoc result filtering: removes weak edges from what is displayed, but does not prevent those same weak edges from having already determined which entities were reachable in the first place.

Technical Architecture

Relational Edge Storage

ColumnPurpose
source_event_idOrigin entity of the recorded relationship
target_event_idDestination entity of the recorded relationship
relation_typeNature of the relationship (e.g. shared identifier, shared address, temporal proximity)
confidence_rankStrength/reliability of the correlation underlying this relationship
evidence_basisReference to the underlying signal(s) that produced the relationship and its confidence rank

Multi-Source, Bidirectional Traversal as SQL

Traversal is implemented as multi-source breadth-first search and bidirectional shortest-path expressed as recursive queries against the relational edge table, rather than as calls into a dedicated graph-database engine. Each expansion step applies a confidence-rank threshold filter before a candidate edge is allowed to extend the traversal frontier - the filter governs which edges the walk is permitted to cross, not merely which edges are shown in a final report.

Blast-Radius Bounding, Independent of Confidence Threshold

Regardless of how permissive or strict the confidence-rank threshold is configured for a given investigation, a fixed maximum visited-node count and a fixed maximum traversal depth are enforced architecturally at every expansion step. This ensures that even a dataset rich in sufficiently-confident relationships cannot produce an unbounded traversal - the ceilings are not merely a soft, configurable default but an architectural constraint on the traversal itself.

Traversal Algorithm & Blast-Radius Bounds

Consider a chain of three relationships: a high-confidence relationship from entity A to entity B, a low-confidence relationship from B to C, and a high-confidence relationship from C to D. Under a traversal that filters only its final result set, D can still appear as connected to A, because the walk was permitted to cross the low-confidence B-C edge to discover C and then D in the first place. Under confidence-gated traversal, the walk is refused permission to expand across the B-C edge at all once its confidence rank falls below the configured threshold - C and D are never reached from A via that path, regardless of what confidence the A-B and C-D relationships carry individually.

This distinction - excluding weak edges from the walk itself, rather than from the walk's output - is what prevents a single ambiguous correlation from silently expanding an investigation's reach to entities whose only connection to the subject of inquiry runs through that one weak link.

Prior Art Differentiation

ApproachSeparate Graph-DB Required?Confidence Filtering PointHard Node/Depth Ceilings?
Dedicated graph database (Neo4j/TigerGraph)YesQuery-time, typically post-traversalConfigurable, not architecturally fixed
Weighted shortest-path algorithmsVariesSelects highest-confidence path, doesn't exclude below-threshold edges from the walkNot inherent to the algorithm
Post-hoc result-set filteringNoAfter traversal completesNot addressed
JIL confidence-gated relational traversalNoDuring each expansion step, before the walk proceedsYes - fixed, architectural

Patent Claim

Independent Claim 154: A computer-implemented method for confidence-gated relationship traversal over a relational evidentiary data store comprising: storing entity relationships as rows in a relational table, each row specifying a source entity, a target entity, a relation type, and a confidence-rank value; executing a multi-source, bidirectional breadth-first traversal expressed as queries against said relational table without reliance on a separate graph-database system; during each expansion step of the traversal, excluding from further traversal any relationship row whose confidence-rank value falls below a specified threshold, such that low-confidence relationships are excluded from the traversal path itself rather than filtered from a final result set; and enforcing, independent of the confidence-rank threshold selected, a fixed maximum traversal depth and a fixed maximum visited-node count, thereby bounding both the computational cost and the investigative blast radius of any single traversal query.