Skip to content

Instantly share code, notes, and snippets.

@choudharymanish8585
Created July 16, 2018 01:17
Show Gist options
  • Save choudharymanish8585/b7a00658d7ba1b010d515514ce10be12 to your computer and use it in GitHub Desktop.
Save choudharymanish8585/b7a00658d7ba1b010d515514ce10be12 to your computer and use it in GitHub Desktop.
public class AccountController {
@AuraEnabled
public static List<Account> getAccounts(){
return [SELECT
Id, Name, Phone, Rating, My_Custom_Field__c, Active__c
FROM Account LIMIT 200];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment