Skip to content

Instantly share code, notes, and snippets.

@jungleeforce
Created August 17, 2019 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jungleeforce/2061a666976b695cd338c5463d104d4c to your computer and use it in GitHub Desktop.
Save jungleeforce/2061a666976b695cd338c5463d104d4c to your computer and use it in GitHub Desktop.
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