Skip to main content

ScriptGraph

Type Alias ScriptGraph 

Source
pub type ScriptGraph = GraphResponse;
Expand description

Cross-SDK alias for GraphResponse (#1189). TS calls the same shape ScriptGraph; Python re-exports both. New Rust code should prefer this name when interop matters. The legacy GraphResponse is kept for back-compat — both refer to the same type.

Aliased Type§

pub struct ScriptGraph {
    pub nodes: Vec<GraphNode>,
    pub edges: Vec<GraphEdge>,
}

Fields§

§nodes: Vec<GraphNode>§edges: Vec<GraphEdge>