This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"W": 512, | |
"H": 512, | |
"show_info_on_ui": true, | |
"tiling": false, | |
"restore_faces": false, | |
"seed_resize_from_w": 0, | |
"seed_resize_from_h": 0, | |
"seed": -1, | |
"sampler": "Euler a", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public with sharing class FetchDataApexController { | |
@AuraEnabled | |
public static List<sObject> getDataFromServer(List<String> acct){ | |
List<sObject> sObjList = new List<sObject>(); | |
String query = 'SELECT '; | |
query = query + 'Name, Id, customField__c FROM customObject__c '; | |
query = query + 'WHERE Id IN: acct '; | |
query = query + ' ORDER BY CreatedOn__c DESC'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<aura:component > | |
<aura:attribute name="name" type="String" default=""/> | |
<aura:attribute name="dynamicSetting" type="String" default="" /> | |
{!v.body} | |
</aura:component> |