feat: add TestSubstep along with step status

This commit is contained in:
Ali BARIN
2022-02-14 19:25:54 +03:00
committed by Ömer Faruk Aydın
parent 50ef6be69c
commit 020ef45f0a
13 changed files with 165 additions and 16 deletions
@@ -0,0 +1,13 @@
import { gql } from '@apollo/client';
export const EXECUTE_FLOW = gql`
mutation ExecuteFlow($stepId: String!) {
executeFlow(stepId: $stepId) {
step {
id
status
}
data
}
}
`;