rca_graph_get
Retrieve a causal graph's current state as JSON, Graphviz DOT, or adjacency mapping for programmatic inspection or visual rendering.
Instructions
Retrieve a causal graph's current state. Use "json" (default) to inspect it programmatically, "dot" to render it visually with Graphviz, or "adjacency" for a plain source->targets mapping.
Args: params (GraphGetInput): - graph_id: the graph to retrieve - format: "json" (full node/edge detail, default), "dot" (Graphviz source), or "adjacency" (simple mapping)
Returns: str: Graph data in the requested format, or a not_found error if the graph doesn't exist or belongs to another user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |