IMainRelation
export interface IMainRelation {
schemaName: string;
type: RelationDataType;
optional: boolean;
sort?: {
field: string;
order: "asc" | "desc";
};
}
if schema has relation with other schema and in SQL that we keep foreign key.
store in InRelation feature
Types
RelationDataType