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