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
public with sharing class ContactList { | |
@AuraEnabled (Cacheable=true) | |
public static List<Contact> fetchContactLocal(){ | |
return [SELECT Id, FirstName, LastName | |
FROM CONTACT Order By FirstName ASC]; | |
} | |
@AuraEnabled (Cacheable=true) | |
public static List<Contact> fetchContact(String field, String sortOrder){ | |
return Database.query('SELECT Id, FirstName, LastName FROM Contact ORDER BY '+field+' '+sortOrder); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment