Graphora API
    Preparing search index...

    Interface GraphBatchMutationResult

    The aggregate result of a successful batch or empty no-op.

    interface GraphBatchMutationResult {
        affectedEdgeIds: readonly GraphId[];
        affectedNodeIds: readonly GraphId[];
        batchId: string;
        ok: true;
        operationCount: number;
        version: number;
    }

    Hierarchy (View Summary)

    Index
    affectedEdgeIds: readonly GraphId[]
    affectedNodeIds: readonly GraphId[]
    batchId: string
    ok: true
    operationCount: number
    version: number