What kind of fields can I exclude with "excludeFields" feature?
Answer.
With excludedFields you are able exclude every field that is in your SOQL query.
- Excluding field from a regular query:
"query" : "SELECT Id, RecordTypeId, Name, IsPersonAccount FROM Account"
"excludedFields" : ["IsPersonAccount"]
This will exclude IsPersonAccount from the processing.
- Excluding field from a multiselect query:
"query" : "SELECT all FROM Account"
"excludedFields" : ["IsPersonAccount"]
This will bring all Account fields except of IsPersonAccount.