vlocode-project - v1.42.0
    Preparing search index...

    Interface ObjectFilter

    interface ObjectFilter {
        filter?: LookupFilter;
        limit?: number;
        objectType: string;
    }

    Hierarchy (View Summary)

    Index

    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:

    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'"
    
    limit?: number

    Optional maximum number of records to return when querying this object.

    objectType: string

    Type of SObject to which this filter applies