Hi Team After deleting with the datahub delete com...
# ingestion
b
Hi Team After deleting with the datahub delete command, the entity created with the same name is not visible on the Datahub UI. How should I handle it?
b
if you visit the page of the entity by specifying the urn in the URL, it should be available, with a banner saying that it has been soft-deleted? if so then you need to ingest this additional mcp:
Copy code
mcp = MetadataChangeProposalWrapper(
                    entityType="dataset",
                    entityUrn=urn,
                    changeType=ChangeTypeClass.UPSERT,
                    aspectName="status",
                    aspect=StatusClass(removed=False),
                )
thank you 1
👍 1