Graphora API
    Preparing search index...

    Interface EdgeUpdatedEvent<EdgeData>

    interface EdgeUpdatedEvent<EdgeData = unknown> {
        change: "data" | "attributes";
        edge: GraphEdge<EdgeData>;
        edgeId: GraphId;
        edgeKey: string;
        type: "edge:updated";
        version: number;
    }

    Type Parameters

    • EdgeData = unknown

    Hierarchy (View Summary)

    Index
    change: "data" | "attributes"
    edgeId: GraphId
    edgeKey: string
    type: "edge:updated"
    version: number