Lightning Component(Aura) To Display Contacts Related To Particular Account
Step 1: Create Apex Class for fetching Contact Details : We need to use the notation “@AuraEnabled” before the method to make it available in the Aura component.public class AccountClass { @AuraEnabled public static list<Contact> getRelatedList(Id recordId) { List<Contact> Conlist = [Select id, name,firstname,lastname,Title,Email,Phone from Contact where AccountId=: recordId ]; return Conlist; }}Step 2: Create a New Lightning […]