Unable to load relationships under Relationship formatter and keeps spinning and never loadsIssue CI Relationships are not loading under Relationship formatter and keeps spinning and never loads.ReleaseAllCauseDue to Orphan relationshipsResolutionIdentify the orphan relationship (parent empty or child empty) from the cmdb_rel_ci table and delete the relationships.We can also use the below example background script to identify multiple orphan relationships. This is an example script to count orphan relationships and remove them. Depending on the total count the delete script should be run as a background job.It should be able to clean about 1 million orphans per hour depending on the system load. The delete script should be run in a dev (non-production) instance to verify that it fixes the problem and then can be run in prod. // Find orphan rel count var ga = new GlideAggregate('cmdb_rel_ci');ga.addEncodedQuery('parent.sys_class_path=NULL^ORchild.sys_class_path=NULL^ORtype.parent_descriptor=NULL^ORtype.child_descriptor=NULL');ga.addAggregate('COUNT');ga.query();ga.next();gs.log(ga.getAggregate('COUNT')); //Delete orphans - NOTE comment out the gs.log(orphan_rel_sys_ids) if dealing with a large number or this will flood the log. var gr = new GlideRecord('cmdb_rel_ci');gr.addEncodedQuery('parent.sys_class_path=NULL^ORchild.sys_class_path=NULL^ORtype.parent_descriptor=NULL^ORtype.child_descriptor=NULL');gr.query();var orphan_rel_sys_ids = [];gs.log('Orphan record count:' + gr.getRowCount());while(gr.next()) { orphan_rel_sys_ids.push(gr.getValue('sys_id'));}gs.log(orphan_rel_sys_ids);gr.deleteMultiple(); Reload the CI page and the relationships should start showing up.