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:
filter: 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'"
Optionallimit
limit?:number
Optional maximum number of records to return when querying this object.
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: