What types of fields can be excluded using the "excludedFields" property?


Answer:

Use excludedFields to omit specific fields from your SOQL query results.

  • Excluding a field from a regular query:
{
  "query": "SELECT Id, RecordTypeId, Name, IsPersonAccount FROM Account",
  "excludedFields": ["IsPersonAccount"]
}

This configuration excludes IsPersonAccount from processing.

  • Excluding a field from a multiselect query:
{
  "query": "SELECT all FROM Account",
  "excludedFields": ["IsPersonAccount"]
}

This setup retrieves all fields from Account except IsPersonAccount.

Last updated on 20th Apr 2024