Created on 06-16-2019 12:53 AM - edited 08-17-2019 02:56 PM
Hi, I have two entities in Atlas (Datatype - DT1, Entity1, guid G1) and(Datatype- DT2Entity2 with guid G2).
I create a relationship between the two entities using guids G1 and G2 and it creates a relationship R1.
In the UI screen I can see the connection between entities under relationships tab.
In entityDef I can see the relationship as Active
{
"guid":"f12991ea-c382-42b4-b22b-63f433e026d4",
"typeName":"unite_realtime_package",
"entityStatus":"ACTIVE",
"displayText":"Preprocessinglambda-1",
"relationshipGuid":"b1e105b3-b9fb-4403-9009-4778ee0fd461",
"relationshipStatus":"ACTIVE",
"relationshipAttributes":{
"typeName":"unite_api_package_realtime_relation"
}
},
Now i use the relationshipGuid and delete the relationship as i donot want Entity1 and Entity2 to be related.
It does change the status to DELETED in entityDef
{
"guid":"f12991ea-c382-42b4-b22b-63f433e026d4",
"typeName":"unite_realtime_package",
"entityStatus":"ACTIVE",
"displayText":"Preprocessinglambda-1",
"relationshipGuid":"b1e105b3-b9fb-4403-9009-4778ee0fd461",
"relationshipStatus":"DELETED",
"relationshipAttributes":{
"typeName":"unite_api_package_realtime_relation"
}
},
But in the UI under relationship tab i can still see the link between two entities.
I except the UI to show only ACTIVE relationships but it is still showing the deleted ones.
I have deleted 2 relationships here but it always show 5 where it should show 3.
Is there a way to show the correct relationships on the UI or anything else needs to be updated to achieve that behaviour.