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";
        data?: AutoBeRealizeExpression;
        include?: AutoBeRealizeQueryInclude[];
        key: string;
        model: string;
        orderBy?: AutoBeRealizeQueryOrderBy[];
        select?: AutoBeRealizeQueryProjection;
        skip?: AutoBeRealizeQueryScalar;
        take?: AutoBeRealizeQueryScalar;
        where?: AutoBeRealizeQueryPredicate;
    }
    Index

    Properties

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

    Abstract database action.

    Mutation payload.

    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.

    Row filter conditions.