Correction in Parent-child relationship between VM and ServerIssue The configuration in the parent-child relationship between the Virtual Machine Instance CI (cmdb_ci_vm_instance) and the Server CI (cmdb_ci_server) in Service Graph Connector for Wiz v1.1 needs to be reconfigured in order to stay coherent with the other Service Graph Connectors. In the current configuration, the application defines the Virtual Machine Instance as the parent and the Server as the child. However, the configuration should have the Server as the parent and the Virtual Machine Instance as the child. Please find below the image on how VM-server relationship appears in Service Graph Connector for Wiz v1.1 This article outlines the steps to reconfigure this relationship.ReleaseService Graph Connector for Wiz v1.1ResolutionThe configuration in the parent-child relationship between the Virtual Machine (VM) and Server needs to be changed in order to be coherent with the rest of ServiceNow CMDB. However, this issue does not impact the data populated in the VM and Server CMDB tables, instead, it only impacts the relationship data in the cmdb_rel_ci table. To resolve this, users must follow the steps below in the exact order: Truncate Existing Relationships: Delete any misconfigured relationships between the VM Instance and Server already present in the cmdb_rel_ci table. Navigate to the search panel in your ServiceNow instance. Search for "Scripts-Background" and open it.Copy the below script and paste it in “Run script (JavaScript executed on server)” console. var relGr = new GlideRecord("cmdb_rel_ci"); relGr.addEncodedQuery("type.nameLIKEvirtualized^parent.discovery_source=SG-Wiz"); relGr.query(); while (relGr.next()) { relGr.deleteRecord(); } In the "Run script in scope" option below the console, select Global as the scope. Execute the script. Install the Fix: Before the release of Wiz v1.2, apply the update set (PFA .xml file) to the instance.Once Wiz v1.2 is available, upgrade from Wiz v1.1 to Wiz v1.2. Re-execute the Data Pull: Reset the last run date time and execute a full data pull to correctly populate the relationship between the VM and Server. By completing these steps, the parent-child relationship will be configured coherently with the other Service Graph Connectors as shown in the image below.