How to display account related contacts in salesforce lightning component
Salesforce Lightning Component to Display Contacts Related to particular Account public with sharing class AjinkyaTestLightningAccController. { @AuraEnabled. public static list<Contact> getRelatedList(Id recordId) { List<Contact> Conlist = [Select id, name,firstname,lastname from Contact where AccountId=: recordId ]; More items… How to use @auraenabled in Salesforce component? Use notation “@AuraEnabled” so that it is available in our component. … Read more