Member Junction
    Preparing search index...

    Slim row shape for an EntityFormOverride lookup. Resolution doesn't need the full BaseEntity object — simple ResultType is faster and avoids a compile-time dependency on the generated entity class. The row is only ever read by the resolver; mutation goes through the generated entity in other code paths (Studio, AI authoring).

    interface EntityFormOverrideRow {
        ComponentID: string;
        Description?: string | null;
        EntityID: string;
        ID: string;
        Name?: string;
        Priority: number;
        RoleID: string | null;
        Scope: "User" | "Role" | "Global";
        Status: "Active" | "Pending" | "Inactive";
        UserID: string | null;
    }
    Index

    Properties

    ComponentID: string
    Description?: string | null
    EntityID: string
    ID: string
    Name?: string
    Priority: number
    RoleID: string | null
    Scope: "User" | "Role" | "Global"
    Status: "Active" | "Pending" | "Inactive"
    UserID: string | null