refactor: Use relations to expose dataOut field of execution steps

This commit is contained in:
Faruk AYDIN
2022-03-03 20:54:13 +03:00
committed by Ali BARIN
parent 3391578655
commit 0c183eeadd
2 changed files with 5 additions and 1 deletions

View File

@@ -18,7 +18,6 @@ const getStepWithTestExecutionsResolver = async (
const previousStepsWithCurrentStep = await req.currentUser
.$relatedQuery('steps')
.withGraphJoined('executionSteps')
.select('steps.*', 'executionSteps.data_out as output')
.where('flow_id', '=', step.flowId)
.andWhere('position', '<', step.position)
.distinctOn('executionSteps.step_id')

View File

@@ -4,9 +4,11 @@ import {
GraphQLEnumType,
GraphQLInt,
GraphQLInputObjectType,
GraphQLList,
} from 'graphql';
import { GraphQLJSONObject } from 'graphql-type-json';
import ConnectionType from './connection';
import ExecutionStepType from './execution-step';
const stepType = new GraphQLObjectType({
name: 'Step',
@@ -34,6 +36,9 @@ const stepType = new GraphQLObjectType({
output: { type: GraphQLJSONObject },
position: { type: GraphQLInt },
status: { type: GraphQLString },
executionSteps: {
type: GraphQLList(ExecutionStepType),
},
};
},
});