@patternmeshjs/core
    Preparing search index...

    Interface BatchChunkPlan

    One chunk of a batch operation for explain.batchGet / explain.batchWrite.

    interface BatchChunkPlan {
        deleteKeys?: readonly Record<string, unknown>[];
        keys?: readonly Record<string, unknown>[];
        operation: "BatchGetItem" | "BatchWriteItem";
        putItems?: readonly Record<string, unknown>[];
        tableName: string;
    }
    Index

    Properties

    deleteKeys?: readonly Record<string, unknown>[]
    keys?: readonly Record<string, unknown>[]
    operation: "BatchGetItem" | "BatchWriteItem"
    putItems?: readonly Record<string, unknown>[]
    tableName: string