AutoBE
    Preparing search index...

    Interface AutoBeRealizeCollectorCallExpression

    Delegation to another collector's collect() to map a nested DTO subtree.

    Use this instead of inlining a nested create object by hand, so the child collector's schema-aware mapping is reused. The named collector must be a declared dependency of the current collector.

    interface AutoBeRealizeCollectorCallExpression {
        collector: string;
        input: AutoBeRealizeObjectExpression;
        type: "collectorCall";
    }
    Index

    Properties

    Properties

    collector: string

    Name of the collector to invoke; must be a declared dependency.

    Argument object passed to the collector.

    type: "collectorCall"

    Type discriminator.