Six-hop graph traversal across all four networks at once. Find how an actor connects to a government through a corporate chain. Trace ownership to its ultimate beneficiary. Most graph databases query one domain — Path Queries spans four, with a manifest on every path.
Preview · switch the query to trace a different cross-domain path, hop by hop.
A graph database queries within one network. The cost of cross-domain questions today is a manual investigation. Path Queries makes them a single call.
Every actor connected within six hops of government:ar-bcra, weighted by influence and filtered to exposure above 0.3.
For twenty portfolio companies, the top board members — and which of them hold positions on related companies.
Trace ownership from one instrument back through every holding company to the people who ultimately control it.
Configurable up to 10 hops. Below six, most graphs resolve sub-second.
Even on six-hop traversal across millions of nodes. Rust plus custom graph indices.
Every path returned carries the NodeVersions and edges it used. Auditor-ready by default.
Traverse actors → companies → governments → instruments in a single query. One graph, four networks.
Weight by influence or exposure; filter by threshold. Paths come back ranked, not raw.
Feed a Path Query result straight into Drift Alerts or Risk Maps — same ontology, no export.
The traversal the explorer animates is the traversal this query runs — ranked, filtered, and manifest-signed.
from deino import Client client = Client(api_key="dno_live_...") paths = client.path_queries.trace( source="instrument:arg-2035", target_layer="actor", # ultimate owner max_hops=6, weight_by="influence", filter={"exposure": {"gt": 0.3}}, ) print(paths[0].hops) # [issued by, subsidiary of, controlled by] print(paths[0].manifest) # sig·path·… — every NodeVersion + edge pinned
A path doesn’t end at a result — it surfaces nodes you then watch, replay, or map, all on the same ontology.
Path Queries ships in the V2 release. Design partners get early access from Q1 2027 and shape the final traversal API. Join the program →
Founder-led conversations for design partners. A free tier is active today for the V1 products it builds on.