diff --git a/packages/catalog-model/src/entity/Entity.ts b/packages/catalog-model/src/entity/Entity.ts index 7199334e51..63ddb6aa53 100644 --- a/packages/catalog-model/src/entity/Entity.ts +++ b/packages/catalog-model/src/entity/Entity.ts @@ -197,8 +197,15 @@ export type EntityRelation = { /** * The target entity of this relation. + * + * @deprecated use targetRef instead */ target: EntityName; + + /** + * The entity ref of the target of this relation. + */ + targetRef: string; }; /**