Skip to content

Instantly share code, notes, and snippets.

@simpluslabs
Created November 13, 2018 10:15
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 simpluslabs/65623a022ccaaac986415cde0aecae4c to your computer and use it in GitHub Desktop.
Save simpluslabs/65623a022ccaaac986415cde0aecae4c to your computer and use it in GitHub Desktop.
public with sharing class ContactController {
@AuraEnabled
public static Contact getContact() {
return [select Id, LastName, CleanStatus from Contact Limit 1];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment