export async function httpTriggerTableInput()

in app/v4/src/functions/httpTriggerTableInput.ts [13:20]


export async function httpTriggerTableInput(
    request: HttpRequest,
    context: InvocationContext
): Promise<HttpResponseInit> {
    context.log(`httpTriggerTableInput was triggered`);
    const items = context.extraInputs.get(tableInput);
    return { jsonBody: items };
}