Skip to main content

salesforce.salesforcemodelsynchronizer.list

Home > @runlightyear/salesforce > SalesforceModelSynchronizer > list

SalesforceModelSynchronizer.list() method

Signature:
list(props: {
syncType: "FULL" | "INCREMENTAL";
lastUpdatedAt?: string;
cursor?: string;
}): Promise<{
objects: any[];
cursor: string;
}>;

Parameters

ParameterTypeDescription
props{ syncType: "FULL" | "INCREMENTAL"; lastUpdatedAt?: string; cursor?: string; }
Returns:

Promise<{ objects: any[]; cursor: string; }>