AutoBE
    Preparing search index...

    Interface AutoBeRealizeQueryIR

    Canonical language-neutral query invocation IR for realize artifacts.

    interface AutoBeRealizeQueryIR {
        action:
            | "delete"
            | "update"
            | "findMany"
            | "findFirst"
            | "findFirstOrThrow"
            | "count"
            | "insert"
            | "insertMany"
            | "updateMany"
            | "upsert"
            | "deleteMany";
        create?: AutoBeRealizeExpression;
        data?: AutoBeRealizeExpression;
        include?: AutoBeRealizeQueryInclude[];
        key: string;
        model: string;
        orderBy?: AutoBeRealizeQueryOrderBy[];
        select?: AutoBeRealizeQueryProjection;
        skip?: AutoBeRealizeQueryScalar;
        take?: AutoBeRealizeQueryScalar;
        update?: AutoBeRealizeExpression;
        where?: AutoBeRealizeQueryPredicate;
    }
    Index

    Properties

    action:
        | "delete"
        | "update"
        | "findMany"
        | "findFirst"
        | "findFirstOrThrow"
        | "count"
        | "insert"
        | "insertMany"
        | "updateMany"
        | "upsert"
        | "deleteMany"

    Abstract database action.

    Prisma upsert create payload.

    Required only when action: "upsert". Must be paired with update.

    Mutation payload for insert/update/updateMany/deleteMany-style actions.

    Do not use data for action: "upsert". Prisma upsert requires sibling create and update payloads instead.

    Related entities to load.

    key: string

    Stable placeholder key used inside generated code comments.

    model: string

    Target ORM model/table name consumed by the renderer.

    Sort order.

    Field projection.

    Pagination offset.

    Pagination limit.

    Prisma upsert update payload.

    Required only when action: "upsert". Must be paired with create; even idempotent upserts need an explicit update object for the existing-row branch.

    Row filter conditions.