diff --git a/packages/backend/src/graphql/schema.graphql b/packages/backend/src/graphql/schema.graphql index 195ee1b7..a6f97dc9 100644 --- a/packages/backend/src/graphql/schema.graphql +++ b/packages/backend/src/graphql/schema.graphql @@ -188,6 +188,7 @@ type ExecutionStep { status: String dataIn: JSONObject dataOut: JSONObject + errorDetails: JSONObject createdAt: String updatedAt: String } diff --git a/packages/types/index.d.ts b/packages/types/index.d.ts index cac3c3a7..49ec37c4 100644 --- a/packages/types/index.d.ts +++ b/packages/types/index.d.ts @@ -26,6 +26,7 @@ export interface IExecutionStep { step: IStep; dataIn: IJSONObject; dataOut: IJSONObject; + errorDetails: IJSONObject; status: string; createdAt: string; updatedAt: string; diff --git a/packages/web/src/components/ExecutionStep/index.tsx b/packages/web/src/components/ExecutionStep/index.tsx index 3016fc84..abddaa23 100644 --- a/packages/web/src/components/ExecutionStep/index.tsx +++ b/packages/web/src/components/ExecutionStep/index.tsx @@ -73,6 +73,7 @@ export default function ExecutionStep(props: ExecutionStepProps): React.ReactEle setActiveTabIndex(tabIndex)}> + @@ -86,6 +87,10 @@ export default function ExecutionStep(props: ExecutionStepProps): React.ReactEle + + + + diff --git a/packages/web/src/graphql/queries/get-execution-steps.ts b/packages/web/src/graphql/queries/get-execution-steps.ts index 8c3d3b82..00b42ff0 100644 --- a/packages/web/src/graphql/queries/get-execution-steps.ts +++ b/packages/web/src/graphql/queries/get-execution-steps.ts @@ -14,6 +14,7 @@ export const GET_EXECUTION_STEPS = gql` status dataIn dataOut + errorDetails createdAt updatedAt step {