Skip to content

Instantly share code, notes, and snippets.

@xgeek-net
Created January 6, 2019 07:17
Show Gist options
  • Save xgeek-net/63164119b8431323d4576645820f7428 to your computer and use it in GitHub Desktop.
Save xgeek-net/63164119b8431323d4576645820f7428 to your computer and use it in GitHub Desktop.
SampleAuraController.cls Apex Server-side
public with sharing class SampleAuraController {
@AuraEnabled
public static Account findAccounts(String accountId) {
List<Account> accounts = [SELECT Id, Name FROM Account WHERE Id = :accountId];
if(accounts.isEmpty()) return null;
return accounts[0];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment