-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
operationId can be useful for debugging purpose.
Describe the solution you'd like
Add operationId to the OperationResult interface.
global interface OperationResult {
// Metadata
DML.OperationType operationType();
Schema.SObjectType objectType();
String operationId; // <==== operation hashCode
Boolean hasFailures();
// Errors
List<Error> errors();
// Records
List<SObject> records();
List<SObject> successes();
List<SObject> failures();
// Details
List<RecordResult> recordResults();
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request