**This is An Apex Class Calling From Parent JS.
public with sharing class accountProvider {
@AuraEnabled
public static List<Contact> searchContact(Account objAcc){
Id accId = [select Id,Name from Account where Name =: objAcc.Name].Id;
System.debug('Received Contact = '+objAcc);
System.debug('ID '+accId);
System.debug('contactsColumn'+ ([select Id, Name,Email,Level__c from Contact where Contact =: accId]));
return ([select Id, Name,Email,Level__c from Contact where Contact =: accId]);
}
}
Solution on LWC interruption.