DAORelation: {
dao: string;
field: string;
refFrom: string;
refTo: string;
reference: "foreign" | "inner";
required: boolean;
type: "1-1" | "1-n";
} | {
field: string;
refOther: {
dao: string;
refFrom: string;
refTo: string;
};
refThis: {
refFrom: string;
refTo: string;
};
reference: "relation";
relationDao: string;
required: boolean;
type: "1-1" | "1-n";
}