Member Junction
    Preparing search index...

    Interface TransformStepResult

    Result of running a transform step or pipeline.

    interface TransformStepResult {
        Skipped: boolean;
        Value: unknown;
    }
    Index

    Properties

    Properties

    Skipped: boolean

    True when an OnError='Skip' step asked to drop the field entirely.

    Value: unknown

    The resulting value (undefined when Skipped).