feat: add TestSubstep along with step status
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
50ef6be69c
commit
020ef45f0a
13
packages/web/src/graphql/mutations/execute-flow.ts
Normal file
13
packages/web/src/graphql/mutations/execute-flow.ts
Normal file
@@ -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
|
||||
}
|
||||
}
|
||||
`;
|
@@ -54,6 +54,7 @@ export const GET_APPS = gql`
|
||||
key
|
||||
description
|
||||
subSteps {
|
||||
key
|
||||
name
|
||||
arguments {
|
||||
label
|
||||
@@ -68,6 +69,7 @@ export const GET_APPS = gql`
|
||||
key
|
||||
description
|
||||
subSteps {
|
||||
key
|
||||
name
|
||||
arguments {
|
||||
label
|
||||
|
@@ -11,6 +11,7 @@ export const GET_FLOW = gql`
|
||||
type
|
||||
key
|
||||
appKey
|
||||
status
|
||||
connection {
|
||||
id
|
||||
verified
|
||||
|
Reference in New Issue
Block a user