Created
March 12, 2019 05:46
-
-
Save simpluslabs/38cc66f62af1c69b961f9d248f5af5b6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by NigamGoyal on 3/11/2019. | |
*/ | |
public with sharing class AccountController { | |
@AuraEnabled(cacheable=true) | |
public static List<Account> getAccountRecordWithRelatedContactList(Id recordId) { | |
List <Account> accountList = new List<Account>(); | |
accountList = [Select Id,(Select Id, FirstName, LastName, Title, Phone, Email FROM Contacts) from Account WHERE Id = :recordId]; | |
return accountList; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment