export async function cosmosDBTrigger()

in app/v4/src/functions/cosmosDBTrigger.ts [6:11]


export async function cosmosDBTrigger(documents: unknown[], context: InvocationContext): Promise<void> {
    context.log(`cosmosDBTrigger processed ${documents.length} documents`);
    for (const document of documents) {
        context.log(`cosmosDBTrigger was triggered by "${(<any>document).testData}"`);
    }
}