MCPcopy Create free account
hub / github.com/ShipSecAI/studio / result

Method result

backend/src/workflows/workflows.controller.ts:685–692  ·  view source on GitHub ↗
(
    @Param('runId') runId: string,
    @Query(new ZodValidationPipe(TemporalRunQuerySchema)) query: TemporalRunQueryDto,
    @CurrentAuth() auth: AuthContext | null,
  )

Source from the content-addressed store, hash-verified

683 description: 'Resolved workflow result payload',
684 })
685 async result(
686 @Param('runId') runId: string,
687 @Query(new ZodValidationPipe(TemporalRunQuerySchema)) query: TemporalRunQueryDto,
688 @CurrentAuth() auth: AuthContext | null,
689 ) {
690 const result = await this.workflowsService.getRunResult(runId, query.temporalRunId, auth);
691 return { runId, result };
692 }
693
694 @Get('/runs/:runId/config')
695 @ApiOkResponse({

Callers 9

getWorkflowResultMethod · 0.80
shipsecWorkflowRunFunction · 0.80
scheduleTriggerWorkflowFunction · 0.80
mainFunction · 0.80
listRunsFunction · 0.80
runWorkflowFunction · 0.80
runTemporalBenchmarkFunction · 0.80

Calls 1

getRunResultMethod · 0.45

Tested by

no test coverage detected