11 lines
357 B
TypeScript
11 lines
357 B
TypeScript
import { ReflectRelationMetadata } from 'src/workspace/workspace-sync-metadata/interfaces/reflect-relation-metadata.interface';
|
|
|
|
export type PartialRelationMetadata = ReflectRelationMetadata & {
|
|
id: string;
|
|
workspaceId: string;
|
|
fromObjectMetadataId: string;
|
|
toObjectMetadataId: string;
|
|
fromFieldMetadataId: string;
|
|
toFieldMetadataId: string;
|
|
};
|