Skip to content

Instantly share code, notes, and snippets.

@sfmishra
Last active April 3, 2019 10:31
Show Gist options
  • Save sfmishra/bfb7419a6045ea51e8971e748de4efe4 to your computer and use it in GitHub Desktop.
Save sfmishra/bfb7419a6045ea51e8971e748de4efe4 to your computer and use it in GitHub Desktop.
public class searchContactController {
@auraEnabled
public static List<Contact> queryContact(String searchTxt) {
String queryStr = 'SELECT Id, Name FROM Contact WHERE NAME Like \'%' + searchTxt + '%\'';
return Database.query(queryStr);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment