Graphora API
    Preparing search index...

    Interface GraphBatchAppliedEvent

    Aggregate event published after a nonempty batch commits.

    interface GraphBatchAppliedEvent {
        affectedEdgeIds: readonly GraphId[];
        affectedNodeIds: readonly GraphId[];
        batchId: string;
        operationCount: number;
        reasons: readonly GraphBatchReason[];
        type: "graph:batch-applied";
        version: number;
    }

    Hierarchy (View Summary)

    Index
    affectedEdgeIds: readonly GraphId[]
    affectedNodeIds: readonly GraphId[]
    batchId: string
    operationCount: number
    reasons: readonly GraphBatchReason[]
    type: "graph:batch-applied"
    version: number