This class is responsible for handling aggregate SOQL queries to the mock database
Since
4/13/2024
Group Soql Engine
Author Zackary Frazier
Inheritance
Perform an aggregate query
public List<Aggregate> aggregateQuery(String query)
Name | Type | Description |
---|---|---|
query | String | String |
List<Aggregate>
,[object Object]
Perform an aggregate query with access level
public List<Aggregate> aggregateQuery(String query, System.AccessLevel accessLevel)
Name | Type | Description |
---|---|---|
query | String | String |
accessLevel | System.AccessLevel | System.AccessLevel |
List<Aggregate>
,[object Object]
Perform an aggregate query with binds
public List<Aggregate> aggregateQueryWithBinds(String query, Map<String,Object> binds, System.AccessLevel accessLevel)
Name | Type | Description |
---|---|---|
query | String | String |
binds | Map<String,Object> | Map<String, Object> |
accessLevel | System.AccessLevel | System.AccessLevel |
List<Aggregate>
,[object Object]