featherbit UI
    Preparing search index...

    Interface PolicyEdge

    A directed edge between two node ports.

    Endpoints use the node_id.port format (e.g. from: rewrite.success, to: client.in); valid ports are out, success, error, and in.

    Parsed on the Rust side by parse_edge_endpoint in src/graph/engine.rs.

    interface PolicyEdge {
        from: string;
        to: string;
    }
    Index
    from: string

    Source endpoint, node_id.port (typically an out/success/error port).

    to: string

    Destination endpoint, node_id.port (typically an in port).