AutoBE
    Preparing search index...

    Interface AutoBeRealizeRelationCreateExpression

    Prisma nested creation of a related row: { create: value }.

    Use when the related entity is created alongside its parent. Pair with AutoBeRealizeCollectorCallExpression to build value through the child collector rather than inlining it.

    interface AutoBeRealizeRelationCreateExpression {
        type: "relationCreate";
        value: AutoBeRealizeExpression;
    }
    Index

    Properties

    Properties

    type: "relationCreate"

    Type discriminator.

    Nested create payload for the related row.