Hierarchy

  • ObjectFilter

Properties

Properties

filter: LookupFilter

Where condition to filter the object data to export by. Can be a string or an object. When an object, the key is the field name and the value is the value to filter by. Accesing fields from the parent datapack using bracket syntax {} is supported:

relatedObjectFilter:
AccountId: $parent.Id
IsActive: true

When defined as a string, the string is used as the where condition and interpolated this allows for more complex where conditions:

filter: "AccountId = '{parent.Id}' AND IsActive = 'true'"
objectType: string

Type of SObject to which this filter applies