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 Copy
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'" Copy
filter: "AccountId = '{parent.Id}' AND IsActive = 'true'"
Type of SObject to which this filter applies
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:When defined as a string, the string is used as the where condition and interpolated this allows for more complex where conditions: