@patternmeshjs/core
    Preparing search index...

    Interface CompiledOperation

    interface CompiledOperation {
        batchDeleteKeys?: readonly Record<string, unknown>[];
        batchKeys?: readonly Record<string, unknown>[];
        batchPutItems?: readonly Record<string, unknown>[];
        conditionExpression?: string;
        consistentRead?: boolean;
        entity: string;
        expressionAttributeNames: Record<string, string>;
        expressionAttributeValues: Record<string, unknown>;
        filterExpression?: string;
        indexName?: string;
        key?: Record<string, unknown>;
        keyConditionExpression?: string;
        operation:
            | "GetItem"
            | "Query"
            | "Scan"
            | "PutItem"
            | "DeleteItem"
            | "UpdateItem"
            | "BatchGetItem"
            | "BatchWriteItem"
            | "ConditionCheck";
        projectedLogicalFields?: readonly string[];
        projectionExpression?: string;
        select?: QuerySelectMode;
        tableName: string;
        updateExpression?: string;
        warnings: readonly string[];
    }
    Index

    Properties

    batchDeleteKeys?: readonly Record<string, unknown>[]
    batchKeys?: readonly Record<string, unknown>[]

    For explain.batchGet / explain.batchWrite only

    batchPutItems?: readonly Record<string, unknown>[]
    conditionExpression?: string
    consistentRead?: boolean
    entity: string
    expressionAttributeNames: Record<string, string>
    expressionAttributeValues: Record<string, unknown>
    filterExpression?: string
    indexName?: string
    key?: Record<string, unknown>
    keyConditionExpression?: string
    operation:
        | "GetItem"
        | "Query"
        | "Scan"
        | "PutItem"
        | "DeleteItem"
        | "UpdateItem"
        | "BatchGetItem"
        | "BatchWriteItem"
        | "ConditionCheck"
    projectedLogicalFields?: readonly string[]
    projectionExpression?: string
    tableName: string
    updateExpression?: string
    warnings: readonly string[]