You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Query accountQuery = new Query(Schema.Account.SObjectType) // Query the account object
.addField(Schema.Account.Id)
.addFields(SOQL.FieldCategory.CUSTOM); // Include all custom fields - only fields that are accessible to the user are included
List accounts = accountQuery.getResults();
DEBUG| this.getQuery(): SELECT , Account_Contact_Soft_Credits_Last_Year__c FROM Account;
I am digging into getQuery()
The text was updated successfully, but these errors were encountered:
Query accountQuery = new Query(Schema.Account.SObjectType) // Query the account object
.addField(Schema.Account.Id)
.addFields(SOQL.FieldCategory.CUSTOM); // Include all custom fields - only fields that are accessible to the user are included
List accounts = accountQuery.getResults();
DEBUG| this.getQuery(): SELECT , Account_Contact_Soft_Credits_Last_Year__c FROM Account;
I am digging into getQuery()
The text was updated successfully, but these errors were encountered: