--- '@backstage/create-app': patch --- Replaced EntitySystemDiagramCard with EntityCatalogGraphCard To make this change to an existing app: Add `@backstage/catalog-graph-plugin` as a `dependency` in `packages/app/package.json` Apply the following changes to the `packages/app/src/components/catalog/EntityPage.tsx` file: ```diff + import { + Direction, + EntityCatalogGraphCard, + } from '@backstage/plugin-catalog-graph'; + import { + RELATION_API_CONSUMED_BY, + RELATION_API_PROVIDED_BY, + RELATION_CONSUMES_API, + RELATION_DEPENDENCY_OF, + RELATION_DEPENDS_ON, + RELATION_HAS_PART, + RELATION_PART_OF, + RELATION_PROVIDES_API, + } from '@backstage/catalog-model'; ``` ```diff - + ``` ```diff const cicdContent = ( + + + ``` Add the above component in `overviewContent`, `apiPage` , `systemPage` and domainPage` as well.