Skip to main content

SELECT

Fields

You are able to add a default fields to selector class. More fields can be added in a place of usage.

public inherited sharing class AccountSelector {

public static SOQL Query {
get {
// default fields
return SOQL.of(Account.sObjectType)
.fields(new List<sObjectField>{
Account.Id,
Account.Name
});
}
}
}

public with sharing class MyController {

public static List<Account> getAccounts() {
return (List<Account>) AccountSelector.Query
.fields(new List<sObjectField>{
Account.BillingCity,
Account.BillingState,
Account.BillingStreet,
Account.BillingCountry
}).asList();
}
}

Parent Fields

Specify relationship name and pass parent object fields.

public inherited sharing class AccountSelector {

public static SOQL Query {
get {
// default fields
return SOQL.of(Account.sObjectType)
.fields(new List<sObjectField>{
Account.Id,
Account.Name
});
}
}
}

public with sharing class MyController {

public static List<Account> getAccountsWithCreatedBy() {
return AccountSelector.Query
.relatedFields('CreatedBy', new List<sObjectField>{
User.Id,
User.Name
}).asList();
}
}

Count

public inherited sharing class AccountSelector {

public static SOQL Query {
get {
return SOQL.of(Account.sObjectType);
}
}
}

public with sharing class MyController {

public static Integer getAccountAmount() {
return AccountSelector.Query.count().asInteger();
}

public static Integer getUniqueAccountNameAmount() {
return AccountSelector.Query.countAs(Account.Name, 'names').asAggregated()[0].names;
}
}