Skip to content

Interface: SyncFormulaResult<K, L, SchemaT>

core.SyncFormulaResult

The return value from the formula that implements a sync table. Each sync formula invocation returns one reasonable size page of results. The formula may also return a continuation, indicating that the sync formula should be invoked again to get a next page of results. Sync functions are called repeatedly until there is no continuation returned.

Type parameters

Name Type
K extends string
L extends string
SchemaT extends ObjectSchemaDefinition<K, L>

Properties

continuation

Optional continuation: Continuation

A marker indicating where the next sync formula invocation should pick up to get the next page of results. The contents of this object are entirely of your choosing. Sync formulas are called repeatedly until there is no continuation returned.

Defined in

api.ts:985


result

result: ObjectSchemaDefinitionType<K, L, SchemaT>[]

The list of results from this page.

Defined in

api.ts:979