Graphora API
    Preparing search index...

    Interface NodeUpdatedEvent<NodeData>

    interface NodeUpdatedEvent<NodeData = unknown> {
        change: "data" | "attributes";
        node: GraphNode<NodeData>;
        nodeId: GraphId;
        nodeKey: string;
        type: "node:updated";
        version: number;
    }

    Type Parameters

    • NodeData = unknown

    Hierarchy (View Summary)

    Index
    change: "data" | "attributes"
    nodeId: GraphId
    nodeKey: string
    type: "node:updated"
    version: number