Database.insertPartial-success DML, save results, errors, and local row changes.
Type Apex expressions and see whether the API runs locally, runs with limits, or requires Salesforce.
Use the editor as a live capability map: type a dot, read the label, and see the boundary before you depend on an API.
Capability cards
These examples come from checked capability rows and the curated editor demo. Each label says whether the API runs locally, runs with named limits, or requires Salesforce.
Database.insertPartial-success DML, save results, errors, and local row changes.
BusinessHours.nextStartDateSeeded schedules, time zones, holidays, and deterministic local calendar math.
Schema.DescribeSObjectResultObject labels, fields, record types, and child relationships from local metadata.
Answers.findSimilarHosted Answers service data stays marked instead of being silently faked.
Interactive Editor
Account.Database.BusinessHours.Schema.describe.describe.fields.results[0].fieldMap.Workflow gallery
Run a scenario to see the command, JSON, trace, local result, and copyable CLI form.
$ glade check --project . --no-progress
Glade check
✗ 1 diagnostic found
force-app/main/default/classes/RefinementService.cls:2:3
error GLADESEMA002 method "latestInvoice" references unknown type "Invoice__c"
Try:
glade schema load --project .
glade check --project .public with sharing class RefinementService {
public static Invoice__c latestInvoice() {
return null;
}
}glade check --project . --no-progressglade check --project . --json --no-progress