Files
automatisch/packages/web/src/graphql/queries/get-step-with-test-executions.ts
2022-03-05 01:37:25 +03:00

18 lines
335 B
TypeScript

import { gql } from '@apollo/client';
export const GET_STEP_WITH_TEST_EXECUTIONS = gql`
query GetStepWithTestExecutions($stepId: String!) {
getStepWithTestExecutions(stepId: $stepId) {
id
appKey
executionSteps {
id
executionId
stepId
status
dataOut
}
}
}
`;