AutoBE
    Preparing search index...

    Interface AutoBeRealizeCollectorExternalInput

    Non-entity value that must be supplied to a collector from the operation context instead of the request body.

    Some Create DTOs intentionally omit persistence-only scalar columns whose values are known by the route or authorization workflow. For example, a polymorphic vote collector may need targetType and targetId even though the request body only contains the vote direction. These inputs become ordinary scalar parameters in collect() and must be supplied by operation collectorCall expressions.

    Samchon

    interface AutoBeRealizeCollectorExternalInput {
        name: string;
        source: string;
        type: "string" | "number" | "boolean";
    }
    Index

    Properties

    Properties

    name: string

    Camel-case collect() parameter name, for example targetType or targetId.

    source: string

    Human-readable provenance, such as "from path parameter postId" or "literal route segment 'post'".

    type: "string" | "number" | "boolean"

    TypeScript primitive type for the parameter.